本文介紹HTML h1 – h6 align屬性指定標(biāo)題的水平對齊方式,在線實(shí)例演示如何使用HTML h1 – h6 align 屬性、瀏覽器的兼容性、語法定義及它的屬性值詳細(xì)資料等。
居中、左、右對齊的 HTML 標(biāo)題:
<h1 align="center">This is heading 1</h1> <h2 align="left">This is heading 2</h2> <h3 align="right">This is heading 3</h3> <h4 align="justify">This is heading 4</h4> <h5 align="justify">This is heading 5</h5> <h6 align="justify">This is heading 6</h6>測試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 align 屬性。
HTML5 不支持 <h1> - <h6> align 屬性。請使用 CSS 代替。
在 HTML 4.01 中,<h1> - <h6> 的 align 屬性 已廢棄。
align 屬性規(guī)定標(biāo)題的水平對齊方式。
<h1> - <h6> 的 align 屬性已廢棄。請使用 CSS 代替。
CSS 語法:<h1 style="text-align:right">
在我們的 CSS 教程中,您可以找到更多有關(guān)text-align 屬性的細(xì)節(jié)。
<h1 align="left|right|center|justify">
值 | 描述 |
---|---|
left | 左對齊標(biāo)題(默認(rèn)值)。 |
right | 右對齊標(biāo)題。 |
center | 居中對齊標(biāo)題。 |
justify | 標(biāo)題有合理的邊距。 |