目录

CSS overflow-wrap 属性


示例

如果长单词溢出容器,允许浏览器断行:

div {
  overflow-wrap: break-word;
}
亲自试一试 »

定义和用法

这个overflow-wrap属性指定如果长单词溢出容器,浏览器是否可以换行。

展示演示❯

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

浏览器支持

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

Property
overflow-wrap 23.0 18.0 49.0 6.1 12.1


CSS 语法

overflow-wrap: normal|anywhere|break-word|initial|inherit;

属性值

Value Description Demo
normal Long words will not break, even if they overflow the container. This is default Demo ❯
anywhere Long words will break if they overflow the container Demo ❯
break-word Long words will break if they overflow the container Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 溢出