目录

CSS word-break 属性


示例

在任意字符处断词:

p.a {
  word-break: break-all;
}
亲自试一试 »

定义和用法

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

展示演示❯

默认值: 普通的
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.wordBreak="break-all"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
word-break 4.0 5.5 15.0 3.1 15.0

CSS 语法

word-break: normal|break-all|keep-all|break-word|initial|inherit;

属性值

Value Description Demo
normal Default value. Uses default line break rules
break-all To prevent overflow, word may be broken at any character Demo ❯
keep-all  Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as value "normal" Demo ❯
break-word To prevent overflow, word may be broken at arbitrary points Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit