CSS網頁製作時實現自動換行的小技巧

來源:互聯網
上載者:User
關鍵字 網頁製作 CSS教程

CSS網頁製作時實現自動換行的小技巧2009年03月06日 星期五 10:47大家都知道連續的英文或數位能是容器被撐大,不能根據容器的大小自動換行,下面是 CSS如何將他們換行的方法!


  對於div  1.(IE瀏覽器)white-space:normal; word-break:break-all;這裡前者是遵循標準。 #wrap{white-space:normal; width:200px; }


或者


#wrap{word-break:break-all;width:200px;} eg.<div id="wrap">ddd1111111111111111111111111111111111</div>效果:可以實現換行  2.(Firefox瀏覽器)white-space: normal; word-break:break-all;overflow:hidden;同樣的FF下也沒有很好的實現方法,只能隱藏或者加捲軸,當然不加捲軸效果更好! #wrap{white-space:normal; width:200px; overflow:auto;}


或者


#wrap{word-break:break-all;width:200px; overflow:auto; } eg.<div id="wrap">ddd1111111111111111111111111111111111111111</div>效果:容器正常,內容隱藏  對於table  1. (IE瀏覽器)使用樣式table-layout:fixed;


eg.<style>


.tb{table-layout:fixed}


</style><table class="tbl" width="80">


<tr>


<td>abcdefghigklmnopqrstuvwxyz 1234567890


</td>


</tr>


</table>效果:可以換行2. (IE瀏覽器)使用樣式table-layout:fixed與nowrapeg.<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>效果:兩個td均正常換行  3. (Firefox瀏覽器)在使用百分比固定td大小情況下使用樣式table-layout:fixed與nowrap,並且使用diveg.<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下還沒有能使容器內容換行的好方法,只能用overflow將多出的內容隱藏,以免影響整體效果)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.