一、對於div強制換行
1.(ie瀏覽器)white-space:normal; word-break:break-all;這裡前者是遵循標準。
#wrap
或者#wrap
2.(firefox瀏覽器)white-space:normal; word-break:break-all;overflow:hidden;
同樣的ff下也沒有很好的實現方法,只能隱藏或者加滾動條,當然不加滾動條效果更好!
#wrap
或者#wrap
二、對於table強制換行
1. (ie瀏覽器)使用樣式table-layout:fixed;
2.(ie瀏覽器)使用樣式table-layout:fixed與nowrap
3. (ie瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap
4.(firefox瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap,並且使用div。
三、強制不換行:div
四、自動換行:div
五、強制英文單詞斷行:div
div強制換行和強制不換行
1 強制不換行,同時以省略號結尾。你好朋友朋友朋友我為什麼不能看到效果啊 2 css自動換行 div3 css強制英文單詞斷行 div若是div巢狀,要使內層div根據內容自動換行,則可只設定外層的div寬,和 white spance nowrap即可。word break break all和w...
DIV強制不換行
一,單個div 1.用nobr元素 code 不換行不換行 2.用nowrap元素 code nowrap div不換行div不換行div不換行 二,兩個div 1.用css裡的float屬性 code id row1 第乙個div id row2 第二個div不換行 2.用css裡的diplay屬...
DIV強制不換行
一 單個div 1.用nobr元素 html head head body div nobr 不換行不換行 nobr div body html 2.用nowrap元素 html head head body div nowrap div不換行div不換行div不換行 div body html 二...