我正在寻找这样的基本信息图标:
Answers:
经过更多搜索后,我自己找到了该实体。它的代码是ⓘ
,它看起来像这样:ⓘ
🛈
ℹ
和ⓘ
html实体会为您提供信息按钮。
p::before { content: "\1f6c8"; }
我需要这样做。仅在Win10,BTW的Chrome中进行测试。
这可能对您有帮助,使用html和CSS,我们可以实现此结果
<!DOCTYPE html>
<html>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<body style="text-align:center;">
<div class="tooltip">🛈
<span class="tooltiptext">Tooltip text</span>
</div>
</body>
</html>