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>
#點擊 "執行實例" 按鈕查看線上實例