这是用于工具包的样式
.custom_tooltip_holder {
position: relative;
}
.custom_tooltip_holder:hover .custom_tooltip {
display: block;
}
.custom_tooltip {
position: absolute;
top: -20px;
right: 5px;
padding: 20px;
background: #fff;
border: 1px solid #3192e1;
display: none;
width: 400px;
max-height: 500px;
overflow: visible;
z-index: 100;
white-space: normal;
color: #2d353c;
}
用于获取悬停文本的代码 *这是在表格内
<i class="fa fa-info-circle">
<span class="custom_tooltip_holder"><div>hovertext</div></i></span>
我尝试使用溢出:可见它仍然无法正常工作。我可以解决这个问题吗?