我有一个辅助div,它在悬停时显示一些文本,但是此div创建垂直滚动而不是溢出容器 http://jsfiddle.net/a9deqs2b/
.container {
overflow-x: auto;
width: 100%;
}
.row {
position: relative;
width: 100%;
height: 30px;
padding: 5px;
cursor: pointer;
&:not(:last-of-type) {
border-bottom: 1px solid black;
}
&:hover .helper {
display: block;
}
}
.helper {
display: none;
position: absolute;
top: 30px;
left: 40px;
width: 100px;
height: 50px;
border-radius: 5px;
background: #e3e;
}
<div class="container">
<div class="row">
fbgfgh
<div class="helper">asd</div>
</div>
<div class="row">
gfdhgfdh
<div class="helper">asd</div>
</div>
</div>
现在,它在y轴上创建了一个不应该存在的溢出。如果没有overflow-x
,它将正常工作。我需要这个overflow-x
是
标记为重复的问题不能解决我的问题。