您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“css如何實(shí)現(xiàn)連續(xù)的英文或數(shù)字自動(dòng)換行”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“css如何實(shí)現(xiàn)連續(xù)的英文或數(shù)字自動(dòng)換行”吧!
對于div
1.(IE瀏覽器)white-space:normal; word-break:break-all;這里前者是遵循標(biāo)準(zhǔn)。
代碼如下:
#wrap{white-space:normal; width:200px; }
或者
代碼如下:
#wrap{word-break:break-all;width:200px;}
<div id="wrap">ddd1111111111111111111111111111111111</div>
效果:可以實(shí)現(xiàn)換行
2.(Firefox瀏覽器)white-space:normal; word-break:break-all;overflow:hidden;同樣的FF下也沒有很好的實(shí)現(xiàn)方法,只能隱藏或者加滾動(dòng)條,當(dāng)然不加滾動(dòng)條效果更好!
代碼如下:
#wrap{white-space:normal; width:200px; overflow:auto;}
或者
代碼如下:
#wrap{word-break:break-all;width:200px; overflow:auto; }
<div id="wrap">ddd1111111111111111111111111111111111111111</div>
效果:容器正常,內(nèi)容隱藏
對于table
1. (IE瀏覽器)使用樣式table-layout:fixed;
代碼如下:
<style>
.tb{table-layout:fixed}
</style>
<table class="tbl" width="80">
<tr>
<td>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
</tr>
</table>
效果:可以換行
2.(IE瀏覽器)使用樣式table-layout:fixed與nowrap
代碼如下:
<style>
.tb {table-layout:fixed}
</style>
<table class="tb" width="80">
<tr>
<td nowrap>abcdefghigklmnopqrstuvwxyz 1234567890
</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>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
<td nowrap>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
</tr>
</table>
效果:兩個(gè)td均正常換行
4.(Firefox瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap,并且使用div
代碼如下:
<style>
.tb {table-layout:fixed}
.td {overflow:hidden;}
</style>
<table class=tb width=80>
<tr>
<td width=25% class=td nowrap>
<div>abcdefghigklmnopqrstuvwxyz 1234567890</div>
</td>
<td class=td nowrap>
<div>abcdefghigklmnopqrstuvwxyz 1234567890</div>
</td>
</tr>
</table>
這里單元格寬度一定要用百分比定義
效果:正常顯示,但不能換行(注:在FF下還沒有能使容器內(nèi)容換行的好方法,只能用overflow將多出的內(nèi)容隱藏,以免影響整體效果)
到此,相信大家對“css如何實(shí)現(xiàn)連續(xù)的英文或數(shù)字自動(dòng)換行”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。