text
英 [tekst] 美 [tɛkst]
n.文本,原文;课文,教科书;主题;版本
v.发短信
justify
英 [ˈdʒʌstɪfaɪ] 美 [ˈdʒʌstəˌfaɪ]
vt.证明…有理;为…辩护;对…作出解释
vi.整理版面;证明合法
css text-justify属性 语法
作用:text-justify 属性规定当 text-align 被设置为 text-align 时的齐行方法。该属性规定如何对齐行文本进行对齐和分隔。
语法:text-justify: auto|inter-word|inter-ideograph|inter-cluster|distribute|kashida|trim
说明: auto 浏览器决定齐行算法。 none 禁用齐行。 inter-word 增加/减少单词间的间隔。 inter-ideograph 用表意文本来排齐内容。 inter-cluster 只对不包含内部单词间隔的内容(比如亚洲语系)进行排齐。 distribute 类似报纸版面,除了在东亚语系中最后一行是不齐行的。 kashida 通过拉伸字符来排齐内容。
注释:只有 Internet Explorer 支持 text-justify 属性。
css text-justify属性 示例
<!DOCTYPE html> <html> <head> <style> div { text-align:justify; text-justify:inter-word; } </style> </head> <body> <h1>CSS text-justify 实例</h1> <div>php中文网</div> <p><b>提示:</b>请调整浏览器窗口的大小,来查看齐行效果。</p> <p><b>注释:</b>text-justify 属性只在 IE 中有效。</p> </body> </html>
点击 "运行实例" 按钮查看在线实例