例
對齊的最後一行<p>元素的權利:
p
{
text-align: justify;
-moz-text-align-last: right;
/* Code for Firefox */
text-align-last: right;
}
試一試» 定義和用法
文本對齊-最後屬性指定如何對齊文本的最後一行。
注:文本對齊,最後一個屬性將只適用於設置為text-align屬性的元素的工作"justify" 。
默認值: | auto |
---|---|
遺傳: | yes |
動畫: | no. Read about animatable |
版: | CSS3 |
JavaScript語法: | object .style.textAlignLast="right" Try it |
瀏覽器支持
在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。
數字後面-moz-指定用一個前綴工作的第一個版本。
屬性 | |||||
---|---|---|---|---|---|
text-align-last | 47.0 | 5.5 | 12.0 -moz- | 不支持 | 34.0 |
注:在Internet Explorer,在"start"和"end"不支持的值。
CSS語法
text-align-last: auto|left|right|center|justify|start|end|initial|inherit;
屬性值
值 | 描述 | 播放 |
---|---|---|
auto | 默認值。 最後一行是合理和左對齊 | 播放 ” |
left | 最後一行左對齊 | 播放 ” |
right | 最後一行被對準在正確的 | 播放 ” |
center | 最後一行居中對齊 | 播放 ” |
justify | 最後一行是有道理的為各行的其餘部分 | 播放 ” |
start | 最後一行是在該行的開頭對齊(left if the text-direction is left-to-right, and right is the text-direction is right-to-left) | 播放 ” |
end | 最後一行是在該行的端部對準(right if the text-direction is left-to-right, and left is the text-direction is right-to-left) | 播放 ” |
initial | 將此屬性設置為默認值。 閱讀關於初始 | 播放 ” |
inherit | 繼承其父元素此屬性。 閱讀關於繼承 |
相關頁面
CSS教程: CSS文本
HTML DOM參考: textAlignLast property