CSS text-align 屬性
CSStext-align屬性
實例
h1, h2, 和 h3元素設置文本的對齊方式:
h1 {text-align:center}
h2 {text-align:left}
h3 {text-align:right}
h2 {text-align:left}
h3 {text-align:right}
在此頁底部有更多的例子。
屬性定義及使用說明
text-align屬性指定元素文本的水平對齊方式。
默認值: | left if direction is ltr, and right if direction is rtl |
---|---|
繼承: | yes |
版本: | CSS1 |
JavaScript 語法: | object.style.textAlign="right" |
瀏覽器支持
表格中的數字表示支持該屬性的第一個瀏覽器版本號。
緊跟在 -webkit-, -ms- 或 -moz- 前的數字為支持該前綴屬性的第一個瀏覽器版本號。
屬性 | |||||
---|---|---|---|---|---|
text-align | 1.0 | 3.0 | 1.0 | 1.0 | 3.5 |
屬性值
值 | 描述 |
---|---|
left | 把文本排列到左邊。默認值:由瀏覽器決定。 |
right | 把文本排列到右邊。 |
center | 把文本排列到中間。 |
justify | 實現兩端對齊文本效果。 |
inherit | 規定應該從父元素繼承 text-align 屬性的值。 |
更多實例
更多高級文本對齊的例子
這個例子演示了一個更高級的文本對齊的例子。
相關文章
CSS 教程: CSS 文本