工具提示未显示。我尝试使用CSS中的
<span id="error-dropdown">Here is error text</span>
和opacity
属性来显示它,但是无论如何它都不会显示。 Link
<img src="https://symboldev.pp.ua/_data/error-sign.svg" alt="Error" id="error">
#error {
height: 30px;
width: 30px;
}
#error::after {
content: "Here is the tooltip text";
display: block;
width: 300px;
height: 300px;
background: #555;
position: absolute;
visibility: hidden;
}
#error:hover::after {
visibility: visible;
}
答案 0 :(得分:0)
这是一个解决方案-只需在图片周围包裹一个链接即可。
#error {
height: 30px;
width: 30px;
}
#error::after {
content: "Here is tooltip text";
display: block;
width: 300px;
height: 300px;
visibility: hidden;
}
#error:hover::after {
visibility: visible;
}
<a href="" id="error"><img src="https://symboldev.pp.ua/_data/error-sign.svg" alt="Error" id="error"></a>