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 { white-space: nowrap; }
JS 小提琴演示。
这会强制包含的内容沿着一条不换行的线继续。
参考:
white-space
只需使用white-space: nowrap;.
white-space: nowrap;