10

我正在使用 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;
}

现在它可以工作了,当我将鼠标悬停在它上面时会显示工具提示,但它也会显示标题...如何删除下图中橙色圈出的内容。

在此处输入图像描述

4

1 回答 1

21

只需不要通过title属性添加内容,将其更改为data-tooltip.

.progress3:hover:after {
    content: attr(data-tooltip);
}

jsFiddle 示例

您可以使用 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;
}
于 2013-11-02T21:13:31.150 回答