css設定文字內容居中的方法是,為文字元素新增text-align屬性,並且將屬性值設為center即可,例如【h1 {text-align: center}】,表示把標題的水平對齊方式設定為居中。
本文操作環境:windows10系統、css 3、thinkpad t480電腦。
text-align 屬性規定元素中的文字的水平對齊方式。
常用屬性值:
left 把文字排列到左邊。預設值:由瀏覽器決定。
right 把文字排列到右邊。
center 把文字排列到中間。
justify 實現兩端對齊文字效果。
inherit 規定應該從父元素繼承 text-align 屬性的值。
舉個小範例:
<html> <head> <style type="text/css"> h1 {text-align: center} h2 {text-align: left} h3 {text-align: right} </style> </head> <body> <h1>这是标题 1</h1> <h2>这是标题 2</h2> <h3>这是标题 3</h3> </body> </html>
來看下效果:
以上是css怎麼設定文字內容居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!