本文介绍HTML h1 – h6 align属性指定标题的水平对齐方式,在线实例演示如何使用HTML h1 – h6 align 属性、浏览器的兼容性、语法定义及它的属性值详细资料等。
居中、左、右对齐的 HTML 标题:
<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 属性规定标题的水平对齐方式。
<h1> - <h6> 的 align 属性已废弃。请使用 CSS 代替。
CSS 语法:<h1 style="text-align:right">
在我们的 CSS 教程中,您可以找到更多有关text-align 属性的细节。
<h1 align="left|right|center|justify">
值 | 描述 |
---|---|
left | 左对齐标题(默认值)。 |
right | 右对齐标题。 |
center | 居中对齐标题。 |
justify | 标题有合理的边距。 |