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.
我有一个正在构建的新网站,只要有空格,CSS就会强制h2标签内的任何文本换行。这是网站:
这就是问题所在:
如果我将“Low Fees”放在一起而没有空格,甚至添加几个字符(“LowFeesABC”),它会保持在一起并且不会换行。我不太了解 CSS,不知道如何将文本放在一起。有任何想法吗?
#topPanel h2 { white-space: nowrap; }
https://developer.mozilla.org/en-US/docs/CSS/white-space
它会换行,因为元素上设置了固定宽度,并且文本“LOW FEES”不适合该宽度。只需移除即可width:90px移除包装。
width:90px