发布网友 发布时间:2022-04-06 13:03
共4个回答
懂视网 时间:2022-04-06 17:24
word-break属性用于指定非CJK(中日韩)脚本的断行规则,规定了自动换行的处理方法。通过使用 word-break 属性,可以让浏览器实现在任意位置的换行。CSS3 word-break属性
作用:word-break 属性规定自动换行的处理方法。
提示:通过使用 word-break 属性,可以让浏览器实现在任意位置的换行。
语法:
word-break: normal|break-all|keep-all;
normal:使用浏览器默认的换行规则。
break-all:允许在单词内换行。
keep-all:只能在半角空格或连字符处换行。
注:所有主流浏览器都支持 word-break 属性。但 Opera 不支持 word-break 属性。
CSS3 word-break属性的使用示例
<!DOCTYPE html> <html> <head> <style> p.test1 { width:11em; border:1px solid #000000; word-break:keep-all; } p.test2 { width:11em; border:1px solid #000000; word-break:break-all; } p.test3 { width:11em; border:1px solid #000000; word-break:keep-all; } p.test4 { width:11em; border:1px solid #000000; word-break:break-all; } </style> </head> <body> <p class="test1">This is a veryveryveryveryveryveryveryveryveryvery long paragraph.</p> <p class="test2">This is a veryveryveryveryveryveryveryveryveryvery long paragraph.</p> <p class="test3">This paragraph contains some text: The lines will break at any character.</p> <p class="test4">This paragraph contains some text: The lines will break at any character.</p> </body> </html>
效果图:
本文参考:https://www.html.cn/book/css/properties/text/word-break.htm
热心网友 时间:2022-04-06 14:32
可使用css样式中的word-break属性,指定其属性值为break-all,即可实现表格内文字自动换行。热心网友 时间:2022-04-06 17:25
把表格的<table>里加入:热心网友 时间:2022-04-06 19:16
把表格的宽度弄小点试试