標題」。"/> 標題」。">
在html5中,可以利用align屬性設定標題居中,該屬性用於規定標題元素中內容的水平對齊方式,當屬性值設定為「center」時,表示標題會居中顯示,語法為“
標題
”。
本教學操作環境:windows10系統、HTML5版、Dell G3電腦。
html5怎麼設定標題居中
在html中想要設定標題居中,可以利用align屬性。
align屬性可以設定指定元素內容的水平對齊方式。
語法如下:
<h1 align="center">标题</h1>
範例如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <h1 align="center">这是一段标题</h1> </body> </html>
輸出結果:
推薦教學:《html影片教學》
以上是html5怎麼設定標題居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!