我正在使用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;
}
现在它有效,当我将鼠标悬停在它上面时会显示工具提示,但它也会显示标题...... 如何删除下图中以橙色圈出的内容。
答案 0 :(得分:20)
只是不要通过title
属性添加内容,将其更改为data-tooltip
。
.progress3:hover:after {
content: attr(data-tooltip);
}
您可以使用JS / jQuery,但考虑到您正在采用的方法,在保留功能的同时隐藏/删除它是不可能的,因为您无需通过CSS添加任何内容。
<强> HTML 强>
<div data-tooltip="This is some information for our tooltip." class="progress3">
</div>
<强> CSS 强>
.progress3 {
position: relative;
width: 100px;
height: 100px;
background: red;
}
.progress3:hover:after {
background: #333;
background: rgba(0,0,0,.8);
border-radius: 5px;
bottom: 26px;
color: #fff;
content: attr(data-tooltip);
left: 20%;
padding: 5px 15px;
position: absolute;
z-index: 98;
width: 220px;
}
.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;
}