当前位置:Gxlcms > css > word-break属性怎么用

word-break属性怎么用

时间:2021-07-01 10:21:17 帮助过:34人阅读

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>

效果图:

1.jpg

本文参考:https://www.html.cn/book/css/properties/text/word-break.htm

以上就是word-break属性怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行