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.
我有很多内联显示的跨度。我的跨度包含一些文本。我的问题是,当跨度到达浏览器的右边框时,跨度被“剪切”。切割我的意思是一半在一行上,其余的在下一行。我想避免这种情况。如果没有足够的空间在同一行显示所有跨度内容,我希望该跨度内容显示在下一行。希望我清楚。预先感谢您的回复。干杯。马克
http://jsfiddle.net/EaW5t/
使用 CSS:
span { white-space:nowrap; }
从文档:
nowrap - 此值折叠空白作为“正常”,但抑制文本中的换行符。
干杯