text-overflow
該屬性配合overflow-hidden使用更佳,表示在內(nèi)容溢出時,文本內(nèi)容所顯示的樣式.
常用overflow:ellipsis;
white-space
該屬性控制文本中的空格樣式,為normal時,就就是瀏覽器默認處理空格時,html中的空格會被自動忽略的。
<p>
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
這段代碼的效果會是這樣的
測試
使用white-space:pre;
可以保留空格,效果相當于使用了<pre></pre>標簽。在展示源代碼的時候可以用的上。
white-space:nowrap
可以強制文本不換行,保持在同一行。
word-wrap
word-wrap屬性允許長的內(nèi)容可以自動換行。當遇到長文本的時候,由瀏覽器處理的換行可能溢出,加上
word-wrap:break-word
就可以解決.