我正在使用 CSS 制作工具提示。现在使用以下html代码
<div title="This is some information for our tooltip." class="progress3">
</div>
和以下CSS
.progress3{
display: inline;
position: relative;
}
.progress3:hover:after{
background: #333;
background: rgba(0,0,0,.8);
border-radius: 5px;
bottom: 26px;
color: #fff;
content: attr(title);
left: 20%;
padding: 5px 15px;
position: absolute;
z-index: 98;
width: 220px;
content: attr(title);
}
.progress3:hover:before{
border: solid;
border-color: #333 transparent;
border-width: 6px 6px 0 6px;
bottom: 20px;
content: "";
left: 50%;
position: absolute;
z-index: 99;
}
现在它可以工作了,当我将鼠标悬停在它上面时会显示工具提示,但它也会显示标题...如何删除下图中橙色圈出的内容。