在这个例子中,我需要水平隐藏内容,溢出-x 设置为隐藏。但是,当我这样做时,它也会自动添加垂直滚动条。我已经阅读了在哪里设置溢出-x 或溢出-y 将另一个设置为自动,从而强制滚动条显示。有没有解决的办法?
<div class="div1">
<div class="div2">
</div>
<div class="div3">
</div>
</div>
div.div1 {
width: 300px;
height: 300px;
background-color: #000;
overflow-y: visible;
overflow-x: hidden;
}
div.div2 {
width: 600px;
height: 80px;
background-color: #ebebeb;
margin-top: 20px;
}
div.div3 {
width: 90px;
height: 400px;
margin-left: auto;
margin-right: auto;
background-color: #900;
}