DIV層中字型自動換行
阿新 • • 發佈:2019-01-29
對於table
1. (IE瀏覽器)使用樣式table-layout:fixed;
eg.
<style>
.tb{table-layout:fixed}
</style>
<table class="tbl" width="80">
<tr>
<td>abcdefghigklmnopqrstuvwxyz1234567890
</td>
</tr>
</table>
效果:可以換行
2.(IE瀏覽器)使用樣式table-layout:fixed與nowrap
eg.
<style>
.tb {table-layout:fixed}
</style>
<table class="tb" width="80">
<tr>
<tdnowrap>abcdefghigklmnopqrstuvwxyz1234567890
</td>
</tr>
</table>
效果:可以換行
3. (IE瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap
<style>
.tb{table-layout:fixed}
</style>
<table class="tb" width=80>
<tr>
<td width=25%nowrap>abcdefghigklmnopqrstuvwxyz1234567890
</td>
<tdnowrap>abcdefghigklmnopqrstuvwxyz1234567890
</td>
</tr>
</table>
效果:兩個td均正常換行
3.(Firefox瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap,並且使用div
eg.
<style>
.tb {table-layout:fixed}
.td {overflow:hidden;}
</style>
<table class=tb width=80>
<tr>
<td width=25% class=td nowrap>
<div>abcdefghigklmnopqrstuvwxyz1234567890</div>
</td>
<td class=td nowrap>
<div>abcdefghigklmnopqrstuvwxyz1234567890</div>
</td>
</tr>
</table>
這裡單元格寬度一定要用百分比定義
效果:正常顯示,但不能換行(注:在FF下還沒有能使容器內容換行的好方法,只能用overflow將多出的內容隱藏,以免影響整體效果)
例如:
一、網頁表格中
table{table-layout: fixed;}
td{word-break: break-all; word-wrap:break-word;}
註釋:
1.第一條table{table-layout:fixed;},此樣式可以讓表格中有!!!(感嘆號)之類的字元時自動換行。
2.td{word-break:break-all},一般用這句這OK了,但在有些特殊情況下還是會撐開,因此需要再加上後面一句(word-wrap:break-word;)就可以解決。此樣式可以讓表格中的一些連續的英文單詞自動換行。
二、 部落格模板中,如果有表格,要類似的定義如下:
<TABLE style="TABLE-LAYOUT: fixed; WORD-BREAK:break-all; WORD-WRAP: break-word" >
將style="TABLE-LAYOUT: fixed; WORD-BREAK: break-all; WORD-WRAP:break-word"這些插入到你的後臺BLOG內容模板裡面即可解決,BLOG回覆不自動換行的問題