摘要:一提示工具上提示工具代码如下上提示工具提示文本运行结果二右提示工具代码如下提示工具右提示工具提示文本运行结果总结使用容器元素并添加类。在鼠标移动到上时显示提示信息。属性用于为提示框添加圆角。
一、提示工具 1、上提示工具 代码如下
body{ margin:0; text-align:center; } .tooltip{ position:relative; display:inline-block; } .tooltip .ze{ display:block; width:100px; height:40px; background:#0f0; padding-top:20px; color:#fff; } .tooltip .yu{ visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 150%; left: 50%; margin-left: -60px; opacity:0; transition: opacity 1s; } .tooltip .yu::after{ content:""; position:absolute; top:100%; left:50%; margin-left:-5px; border-width:5px; border-style:solid; border-color: black transparent transparent transparent; } .tooltip:hover .yu{ visibility:visible; opacity:1; }
上提示工具提示文本