【发布时间】:2019-02-22 16:05:21
【问题描述】:
我对工具提示有疑问,工具提示隐藏在表格标题后面,或者它显示在一个框中,但没有显示出来。
请参考提示隐藏在另一个 div 后面的图像 (图片中的营销在提示中):
.tooltipCustom {
position: relative;
display: inline-block;
}
.tooltipCustom .tooltipCustomtext {
visibility: hidden;
width: 120px;
background-color: #efeee6;
color: #868474;
text-align: center;
border-radius: 6px;
padding: 5px 0;
border-width: 1px;
border-style: solid;
border-color: black;
/* Position the tooltip */
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltipCustom:hover .tooltipCustomtext {
visibility: visible;
}
<div class='tooltipCustom'>
<sup style="vertical-align: top">
Something
</sup>
<span class='tooltipCustomtext'>
Underlying price: List price <br/>
Applied Discounts: Marketing
</span>
</div>
【问题讨论】:
-
这个问题有什么解决办法?
标签: html css handsontable