Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面上有内容在框中。
它们是这样显示的。
Box1 Box2 Box3 Box4
然后,如果我再添加它,它会向下跳并产生垂直溢出。
但我希望它有一个水平滚动条。
这就是包装器在 css 中的方式。
#content { overflow:auto; width:100%; height:450px; }
我假设你的意思是这样的:http: //jsfiddle.net/9vvtg/
只需要添加
空白:nowrap;
的宽度#content是参考其父级的宽度,很可能是视口。如果您需要水平滚动,请设置显式宽度。如果您知道包含元素的宽度,只需进行数学运算并将宽度设置为匹配,或者懒惰并将其设置为更宽。
#content
/* there are four of these */ .insides { width: 200px; display: block; float: left; } #content { width: 800px; }