Questions tagged «nowrap»

13
如何使DIV不包裹?
我需要创建一个包含多个其他DIV的容器DIV样式。要求如果将浏览器窗口调整为窄尺寸,则这些DIV将不会自动换行。 我试图使其工作如下。 <style> .container { min-width: 3000px; overflow: hidden; } .slide { float: left; } </style> <div class="container"> <div class="slide">something</div> <div class="slide">something</div> <div class="slide">something</div> <div class="slide">something</div> </div> 在大多数情况下,这是可行的。但是,在某些特殊情况下,渲染是不正确的。我发现容器DIV在IE7的RTL中更改为3000px宽度;变得混乱了。 还有其他方法可以使容器DIV不包装吗?
179 html  css  word-wrap  nowrap 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.