好像也有类似的问题,通过添加padding-right解决了。但是,在我的情况下,这不起作用,因为我不知道任何 div 的宽度,直到内容在运行时通过 ajax 调用呈现。我有类似的东西
假设下面的伪代码在语法上是正确的。
<div id="parent">
<div id="child1"> Lots of contents </div>
<div id="child2"> Lots of contents </div>
</div>
#parent {
overflow: auto;
max-width: 600px;
}
#child1 , #child2 {
display: inline-block;
max-width: 300px;
}