1、word-break
不加的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8401/e9c2fdfe-c8f4-30cf-b870-8990b13a065a.png[/img]
加上的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8399/c7efca0e-dfc7-37ae-b770-46002808fc83.png[/img]
2、word-wrap
不加的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8401/e9c2fdfe-c8f4-30cf-b870-8990b13a065a.png[/img]
加上的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8405/2cf9d42b-bc49-3b75-ad5d-6b349c0f19d8.png[/img]
.article{
width: 300px;
height: 200px;
/*word-wrap:break-word;*/
word-break:break-all;
background: #ccc;
}
不加的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8401/e9c2fdfe-c8f4-30cf-b870-8990b13a065a.png[/img]
加上的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8399/c7efca0e-dfc7-37ae-b770-46002808fc83.png[/img]
2、word-wrap
.article{
width: 300px;
height: 200px;
word-wrap:break-word;
/*word-break:break-all;*/
background: #ccc;
}
不加的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8401/e9c2fdfe-c8f4-30cf-b870-8990b13a065a.png[/img]
加上的效果:
[img]http://dl2.iteye.com/upload/attachment/0102/8405/2cf9d42b-bc49-3b75-ad5d-6b349c0f19d8.png[/img]