最新的Web開發教程
 

Style textAlignLast Property

<Style對象

對齊pragraph到右側的最後一行:

document.getElementById("myDIV").style.textAlignLast = "right";
試一試»

定義和用法

該則textAlignLast屬性指定如何對齊文本的最後一行。

注:該物業則textAlignLast將只與設置為text-align屬性的元素工作"justify"


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

該則textAlignLast屬性僅在Internet Explorer支持。

Firefox支持替代方案,MozTextAlignLast財產。

"start""end"都無法在Internet Explorer的支持。


句法

返回則textAlignLast屬性:

object .style.textAlignLast

設置則textAlignLast屬性:

object .style.textAlignLast="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版本 CSS3

相關頁面

CSS參考: text-align-last property


<Style對象