这篇文章将为大家详细讲解有关CSS3怎么实现自动换行效果,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
word-break属性
自动换行属性,使用word-break属性,可以让浏览器实现在任意位置换行
它有三个属性值分别为:
normal:浏览器中的默认换行行为
break-all:可允许在单词内换行
keep-all:只能在半角空格或连字符处进行换行
例:
<style>
.p1{
width:200px;
border:1pxsolid#ccc;
word-break:normal;
}
.p2{
width:200px;
border:1pxsolid#ccc;
word-break:keep-all;
}
.p3{width:200px;
border:1pxsolid#ccc;
word-break:break-all;
}
</style>
</head>
<body>
<pclass="p1">PhpChinesewebsiteprovidesalargenumberoffree,original,high-definitionphpvideotutorials.</p>
<pclass="p2">PhpChinesewebsiteprovidesalarge numberoffree,original,high-definitionphpvideotutorials.</p>
<pclass="p3">PhpChinesewebsiteprovidesalargenumberoffree,original,high-definitionphpvideotutorials.</p>
</body>
关于“CSS3怎么实现自动换行效果”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。