目录

CSS text-justify 属性


示例

当 text-align 设置为 "justify" 时,将对齐方式设置为 "inter-word":

div {
  text-align: justify;
  text-justify: inter-word;
}
亲自试一试 »

定义和用法

这个text-justify属性指定当 text-align 设置为 "justify" 时文本的对齐方式。

默认值: 汽车
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.textJustify="inter-word"

浏览器支持

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

Property
text-justify Yes* 11.0 55.0 10.0.3 Yes*

*此功能背后启用实验性 Web 平台功能首选项(需要设置为启用)。要更改 Chrome 中的偏好设置:在 Chrome 浏览器中输入 "chrome://flags"。要更改 Opera 中的首选项:在 Opera 浏览器中输入 "flags"。



CSS 语法

text-justify: auto|inter-word|inter-character|none|initial|inherit;

属性值

Value Description Demo
auto The browser determines the justification algorithm Play it »
inter-word Increases/Decreases the space between words Play it »
inter-character Increases/Decreases the space between characters Play it »
none Disables justification methods Play it »
initial Sets this property to its default value. Read about initial Play it »
inherit Inherits this property from its parent element. Read about inherit