」。"/> 」。">
在html5中,可以利用style屬性來配合「white-space」屬性來設定文字強制不換行;style屬性用來設定元素的樣式,「white-space」屬性用來指定元素內的空白怎麼處理,當「white-space」屬性值被設定為nowrap時,文字就不會換行,直到遇到「
」標籤,語法為「
本教學操作環境:windows10系統、CSS3&&HTML5版本、Dell G3電腦。
white-space屬性指定元素內的空白怎麼處理。
normal 預設。空白會被瀏覽器忽略。
pre 空白會被瀏覽器保留。其行為方式類似 HTML 中的
標籤。
nowrap 文字不會換行,文字會在同一行上繼續,直到遇到
標籤為止。
pre-wrap 保留空格符序列,但正常地進行換行。
pre-line 合併空白符號序列,但保留換行符號。
範例如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>123</title> <style> div{ width: 120px; height: 60px; line-height: 20px; border: 1px solid red; } </style> </head> <body> <div style="white-space:nowrap"> This is some text. This is some text. </div> <div> This is some text. This is some text. </div> </body> </html>
輸出結果:
以上是html5文字怎麼強制不換行的詳細內容。更多資訊請關注PHP中文網其他相關文章!