HTML中的<center>標記用於將文本設置為居中對齊。 HTML5不支持此標記。 CSS的屬性用於設置元素的對齊方式,而不是HTML5中的中心標簽。
用法:
<center> Contents... </center>
範例1:此示例說明了HTML中心標簽。
HTML
<!DOCTYPE html>
<html>
<body>
<!--center tag starts here -->
<center>
<h1>GeeksforGeeks</h1>
<h2><center> tag</h2>
<p>GeeksforGeeks:A computer science portal for geeks</p>
<!--center tag ends here -->
</center>
</body>
</html>
輸出:
範例2:在HTML5中使用CSS屬性將文本對齊方式設置為居中。
HTML
<!DOCTYPE html>
<html>
<body>
<h1>GeeksforGeeks</h1>
<!--center using CSS style -->
<h2 style="text-align:center">CSS center property</h2>
</body>
</html>
輸出:
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML <html>用法及代碼示例
- HTML <section>用法及代碼示例
- HTML Style用法及代碼示例
- HTML <marquee>用法及代碼示例
- HTML <noframes>用法及代碼示例
- HTML <picture>用法及代碼示例
- HTML <font>用法及代碼示例
- HTML <hgroup>用法及代碼示例
- HTML <q>用法及代碼示例
- HTML Object用法及代碼示例
- HTML Phrase用法及代碼示例
- HTML <hr>用法及代碼示例
- HTML <nav>用法及代碼示例
- HTML <Meta>用法及代碼示例
- HTML <optgroup>用法及代碼示例
- HTML <frame>用法及代碼示例
- HTML <main>用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 HTML <center> Tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。