方法:1.使用text-align屬性設定文字水平居中,語法「text-align:center」;2、使用line-height屬性設定文字垂直居中,語法「line-height:數值」; 3.使用CSS3的flex佈局設定文字垂直居中。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
1、使用text-align屬性來使文字水平居中
text-align屬性規定元素中的文本的水平對齊方式,透過使用center值來設定文本居中。
text-align是一個基本的屬性,它會影響一個元素中的文字行互相間的對齊方式。值left、right和center會導致元素中的文字分別左對齊、右對齊和居中,想要讓文字居中,直接使用center即可。
此屬性設定文字和img標籤等一些內嵌物件(或與之類似的元素)的居中。
此屬性有以下幾個特點:
1)、text-align的center應用在一個容器上,它只針對容器裡面的文字以及容器裡面的display為inline或inline -block的容器,如果裡面的容器display為block,裡面的容器的內容不會居中。
2)、text-align具有向下傳遞性,會不斷地向子元素傳遞。如果設定一個div,則其子div中的內容也會居中。
nbsp;html> <meta> <title>css 水平居中</title> <style> .box { width: 400px; height: 100px; background: pink; text-align:center; } </style> <div>css 水平居中了--文本文字</div>
效果圖:
#2、使用line-height屬性讓文字垂直置中
line-height 屬性設定行間的距離(行高)。不允許使用負值。
此屬性會影響行框的佈局。在應用到一個區塊級元素時,它定義了該元素中基線之間的最小距離而不是最大距離。
nbsp;html> <meta> <title>css 垂直居中</title> <style> .box { width: 300px; height: 300px; background: paleturquoise; line-height:300px; } </style> <div>css 垂直居中了--文本文字</div>
效果圖:
#3、CSS3的flex版面讓文字垂直居中
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>css 垂直居中</title> <style> .box{ width: 300px; height: 200px; background: #ccc; /*设置为伸缩容器*/ display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; /*垂直居中*/ -webkit-box-align: center;/*旧版本*/ -moz-box-align: center;/*旧版本*/ -ms-flex-align: center;/*混合版本*/ -webkit-align-items: center;/*新版本*/ align-items: center;/*新版本*/ } </style> </head> <body> <div class="box">css 垂直居中--文本文字(弹性布局)</div> </body> </html>
效果:
推薦學習:css影片教學
#以上是css如何設定文字居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!