HTML 长文本换行

五迷三道 提交于 2019-12-01 01:49:01

word-break 属性指定单词在到达行尾时应如何中断。

p.a {
    word-break: break-all;
}
word-break: normal|break-all|keep-all|break-word|initial|inherit;

 

属性值:

ValueDescription
normal 默认值。 使用默认换行符规则
break-all 按div容器长度进行换行
keep-all  Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as value "normal"
break-word To prevent overflow, word may be broken at arbitrary points
initial Sets this property to its default value. Read about initial
inherit

Inherits this property from its parent element. Read about inherit

 

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!