我想向我的一个div容器中添加水平滚动,但是我在该容器中的一个div上有一个tooltip (bulma),它下车了。
<div class="container">
<div class="item" data-tooltip="how to get this not to be cut off.">
<span>some stuff here</span>
</div>
</div>
.container {
display: flex;
flex-direction: row;
overflow: visible;
overflow-y: scroll;
}