CSS可以非常方便地使文字居中,下面我們來介紹一些有用的CSS技巧。
text-align: center;
通過設(shè)置text-align屬性為center,可以使文字在其容器中水平居中。 示例如下:
div { text-align: center; }
使用
包裹文章內(nèi)容即可實(shí)現(xiàn)整體居中的效果。
display: flex; align-items: center; justify-content: center;
還可以使用flex布局在容器中居中文本,具體屬性如下:
- display: flex; 使容器變?yōu)閒lex容器
- align-items: center; 將文本在垂直方向上居中
- justify-content: center; 將文本在水平方向上居中
示例如下:
div { display: flex; align-items: center; justify-content: center; }
以上是CSS中對于文字隨畫面居中的技巧,可以根據(jù)實(shí)際需求來選擇不同的方法。
上一篇php 優(yōu)美