我正在使用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;
}
現在它的工作原理,當我在它懸停顯示工具提示,但它也顯示標題... 我如何刪除下面圖片中以橙色標出的內容。
不幸的是,不能用CSS:http://stackoverflow.com/questions/13626231/how-can-you-hide-the-title-tag-using-css –