word-break:break-all和word-wrap:break-word区别

一、自动换行 word-break:break-all和word-wrap:break-word

一般这两个属性都会加上 height-auto;white-space:normal;
共同点:word-break:break-all和word-wrap:break-word都是能使其容器如DIV的内容自动换行。
不同点:
1.word-break:break-all 例如div宽200px,它的内容就会到200px自动换行,如果该行末端有个英文单词很长(congratulation等),它会把单词截断,变成该行末端为conra(congratulation的前端部分),下一行为tulation(conguatulation)的后端部分了。
2.word-wrap:break-word 例子与上面一样,但区别就是它会把congratulation整个单词看成一个整体,如果该行末端宽度不够显示整个单词,它会自动把整个单词放到下一行,而不会把单词截断掉的。

.div{
	height:auto;
	white-space:normal;
	word-wrap:break-word;
}
.p{
	height:auto;
	white-space:normal;
	word-break:break-all;
}

你可能感兴趣的:(CSS技巧,css,前端,css3)