css自動換行的設定方法:使用【word-break】屬性,可以讓瀏覽器實作在任意位置換行,程式碼為【.p3{width:200px;border:1px solid #ccc;word- break:break-all】。
本教學操作環境:windows7系統、CSS3&&HTML5版,DELL G3電腦。
css自動換行的設定方法:
自動換行屬性,使用word-break
屬性,可以讓瀏覽器實作在任何位置換行
它有三個屬性值分別為:
normal
: 瀏覽器中的預設換行行為
break-all
:可允許在單字內換行
#keep-all
:只能在半角空格或連字號處進行換行
範例:
<style> .p1{ width:200px; border:1px solid #ccc; word-break:normal; } .p2{ width:200px; border:1px solid #ccc; word-break:keep-all; } .p3{width:200px; border:1px solid #ccc; word-break:break-all; } </style> </head> <body> <p class="p1">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> <p class="p2">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> <p class="p3">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> </body>
效果圖:
##相關教學建議:
以上是css自動換行怎麼設定的詳細內容。更多資訊請關注PHP中文網其他相關文章!