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.
我正在尝试进行水平布局,尽管 UL 元素不断剪辑并将其放回新行。
像这样:
我想要的是所有内容都在一条线上,无需手动设置宽度。
该网站可以在这里看到:http: //prv.sampettersson.com
white-space:nowrap;在父元素上添加
white-space:nowrap;
像这样的东西似乎可以做到这一点:
CSS
ul{ list-style: none; height: 200px; overflow: hidden; width: 20000px; }