Rumah > Artikel > hujung hadapan web > CSS3如何实现自动换行效果
CSS3实现自动换行效果的方法:1、通过word-break属性实现自动换行效果;2、通过word-wrap属性来实现自动换行效果。
本文操作环境:Windows7系统、HTML5&&CSS3版、Dell G3电脑。
CSS3中要实现自动换行的效果可以通过word-break属性或者word-wrap属性来实现
在CSS3中有一个新的属性可以让文本自动换行,尤其在内容多的文本中换行是一件很重要的事,接下来在文章中将为大家介绍有哪些换行属性以及它们的用法
word-break属性
自动换行属性,使用word-break属性,可以让浏览器实现在任意位置换行
它有三个属性值分别为:
normal: 浏览器中的默认换行行为
break-all:可允许在单词内换行
keep-all:只能在半角空格或连字符处进行换行
【推荐课程:CSS3教程】
例:
<style> .p1{ width:200px; border:1px solid #ccc; word-break:normal; } .p2{ width:200px; border:1px solid #ccc; word-break:keep-all; } .p3{width:200px; border:1px solid #ccc; word-break:break-all; } </style> </head> <body> <p class="p1">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> <p class="p2">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> <p class="p3">Php Chinese website provides a large number of free, original, high-definition php video tutorials.</p> </body>
效果图如下
work-wrap属性
允许长单词或 URL 地址换行到下一行
它有两个属性值,分别为
normal:只能允许在断字点处进行换行是浏览器的默认行为
break-word:可以允许在长单词或者URL地址的内部进行换行
例:
<style> .p1{width:200px; border:1px solid #ccc; word-wrap:normal; } .p2{ width:200px; border:1px solid #ccc; word-wrap:break-word; } </style> </head> <body> <p class="p1">PhpChinesewebsiteprovidesalargenumber of free, original, high-definition php video tutorials.</p> <p class="p2">PhpChinesewebsiteprovidesalargenumber of free, original, high-definition php video tutorials.</p> </body>
效果图如下:
其实work-wrap与work-break的用法都差不多,实现的功能也基本一样,只不过work-wrap针对的是长单词过着url地址。
总结:以上就是本篇文章的全部内容了,希望通过这篇文章能够让大家对于CSS3中的自动换行有一定的了解
Atas ialah kandungan terperinci CSS3如何实现自动换行效果. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!