首頁  >  文章  >  web前端  >  css控製文字自動換行

css控製文字自動換行

高洛峰
高洛峰原創
2016-10-12 10:33:421392瀏覽

自動換行問題,正常字符的換行是比較合理的,而連續的數字和英文字符常常將容器撐大,挺讓人頭疼,下面介紹的是CSS如何實現換

行的方法

對於div, p等區塊級元素
正常文字的換行(亞洲文字和非亞洲文字)元素擁有預設的white-space:normal,當定義的寬度之後自動換行

html

正常文字的換行(亞洲文字和非亞洲文字)元素擁有預設的white-space:normal,當定義

css
#wrap{white-space:normal; width:200px; }

1.(IE瀏覽器)連續的英文字元和阿拉伯數字,使用英文字元和阿拉伯數字,使用word-wrap : break-word ;或word-break:break-all;實作強制斷行
#wrap{word-break:break-all; width:200px;}


#wrap{word-wrap:break- word; width:200px;}

abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111

效果:可以實現換行

2.(Firefox瀏覽器
效果:可以實現換行

2.(Firefox瀏覽器)連續的字符和新數字的斷行超出邊界的字元隱藏或,為容器加上捲軸

#wrap

{word-break:break-all; width:200px; overflow:auto;}

abcdefghijklmnabcdefghijklmnabcdefghijkl111abcdefghijklmnabcdefghijklmnabcdefghijkl1111 table

1. (IE瀏覽器)使用table-layout:fixed;強制table的寬度,多餘內容隱藏


abcdefghigklmnopqrstuvw
2.(IE瀏覽器)使用table-layout:fixed;強制table的寬度,
內層td,th採用word-break : break-all;或word-wrap : break-word ;換行
 
效果:隱藏多餘內容

abcdefghigklmnopqrstuvwxyz 1234567890  


abcdefghigklmnopqrstuvwxyz 1234567890

🜎 IE瀏覽器)在td,th中嵌套div,p等採用上面提到的div,p的換行方法

4.(Firefox瀏覽器)使用table-layout:fixed;強制table的寬度,內層td,th採

用word-break : break-all;或word-wrap : break-word ;換行,使用overflow:hidden;隱藏超出內容,這裡overflow:auto;無法運作

abcdefghigklmnopqrstuvwxyz1234567890.

效果:隱藏多於內容


5.(Firefox瀏覽器) 在td,th中嵌套div,p等採用上面提到的對付Firefox的方法
運行代碼框100素材網

最後,這種現像出現的幾率很小,但是不能排除網友的惡搞。如果

有問題請到在下面留言
下面是提到的例子的效果
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>字符换行
 
</title>
<style type="text/css">
table,td,th,div { border:1px green solid;}
code { font-family:"Courier New", Courier, monospace;}
 
</style>
</head>
<body>
<h1><code>div</code></h1>
<h1><code>All white-space:normal;</code></h1>
<div style="white-space:normal; width:200px;">Wordwrap still occurs in a td element that 
has its WIDTH attribute set to a value smaller than the unwrapped content of the cell, 
even if the noWrap property is set to true. Therefore, the WIDTH attribute takes 
precedence over the noWrap property in this scenario</div>
 
<h1><code>IE  word-wrap : break-word ;</code></h1>
<div style="word-wrap : break-word ; width:200px;">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
<h1><code>IE  word-break:break-all;</code></h1>
<div style="word-break:break-all;width:200px;">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
 
<h1><code>Firefox/ word-break:break-all; overflow:auto;</code></h1>
<div style="word-break:break-all; width:200px; overflow:auto;">abcdefghijklmnabcdefghijklmnabcdefghijkl
mn111111111</div>
<h1><code>table</code></h1>
<h1><code>table-layout:fixed;</code></h1>
<table style="table-layout:fixed" width="200">
<tr>
<td>abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
</tr>
</table>
<h1><code>table-layout:fixed; word-break : break-all; word-wrap : break-word ;</code></h1>
<table width="200" style="table-layout:fixed;">
<tr>
<td width="25%" style="word-break : break-all; ">abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
<td style="word-wrap : break-word ;">abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
</tr>
</table>
<h1><code>FF  table-layout:fixed; overflow:hidden;</code></h1>
<table style="table-layout:fixed" width="200">
<tr>
<td width="25%"  style="word-break : break-all; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
<td width="75%" style="word-wrap : break-word; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
</tr>
</table>
</body>
</html>

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn