我有 2 个浮动 div,我希望它们位于同一行,它们的宽度超过 1024px,因此它们需要水平窗口滚动,但尽管将它们包装在 div 中,white-space:nowrap;
但 div 会中断并出现在两行上。我在这段代码中有什么问题吗?谢谢。
.wrapper{
white-space:nowrap;
}
.content{
float:left; width:600px; height:20px;
}
<div class = "wrapper">
<div class = "content" style = "background-color:red;"></div>
<div class = "content" style = "background-color:blue;"></div>
</div>