”。"/> ”。">
在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中文网其他相关文章!