gpt4 book ai didi

html - 工具提示隐藏在表格标题后面

转载 作者:行者123 更新时间:2023-11-28 01:05:33 24 4
gpt4 key购买 nike

我有一个关于工具提示的问题,工具提示隐藏在表格标题后面,或者它显示在一个框中但没有显示出来。

请引用图片,提示隐藏在另一个 div 后面(图片中的营销在提示中):

enter image description here

.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>

最佳答案

修复它

/* Position the tooltip */
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -60px;

例如

/* Position the tooltip */
position: absolute;
top: 20px;
left: 50%;
margin-left: 0;

关于html - 工具提示隐藏在表格标题后面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52389630/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com