word-wrap屬性用於在一行中斷開並換行到下一行。
以下顯示了範例語法 −
「即時示範
<!DOCTYPE html> <html> <head> <style> div { width: 200px; border: 2px solid #000000; } div.b { word-wrap: break-word; } </style> </head> <body> <h2>word-wrap: break-word property</h2> <div class = "b"> ThisisdemotextThisisdemotext: thisisaveryveryveryveryveryverylongword. The long word wraps to the next line.</div> </body> </html>
以上是CSS 自動換行屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!