CSS工具提示箭头不起作用

时间:2017-05-22 12:56:02

标签: html css tooltip

我一直试图制作一个工具提示。当我将鼠标悬停在图像上时出现的下图中的内容:

Tooltip

问题是以下三角箭头根本没有出现。我已经google了很多,并通过以前问过stackoverflow问题。但没有运气。我将把代码放在下面,请你告诉我哪里出错了:

HTML code:

<span class="help-tooltip" tooltip-text="Lorem ipsum dolor sit amet, consectetur
             adipiscing elit. Donec non diam enim. Quisque leo erat, vulputate id mi  et, pharetra vulputate sapien.">

            <img src="/static/img/help.png">
 </span>

以下是我的css代码:

span[tooltip-text]:hover:after {
    content: attr(tooltip-text);
    padding: 8px 8px;
    color: white;
    position: absolute;
    left: -60px;
    bottom: 120%;
    width: 275px;
    height: auto;
    background: #0679ca;
    border-radius: 10px;
}

.help-tooltip:hover {
    position: relative;
}

1 个答案:

答案 0 :(得分:1)

请尝试这样做以实现目标,

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    margin: 50px;
}

.tooltip .tooltiptext {
    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;
}

.tooltip .tooltiptext::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 .tooltiptext {
    visibility: visible;
}
<body style="text-align:center;">

<div class="tooltip">Hover me
 <span class="tooltiptext">Tooltip text</span>
</div>