У меня вопрос по поводу всплывающей подсказки, подсказка скрывается за заголовком таблицы или отображается в одном поле, но не отображается.
Пожалуйста, обратитесь к изображению, где подсказка прячется за другим div (маркетинг, показанный на изображении в подсказке):
![enter image description here](https://i.stack.imgur.com/hlHjH.png)
.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>