css实现文本内容水平居中的4个方法
warning:
这篇文章距离上次修改已过447天,其中的内容可能已经有所变动。
- 使用
text-align属性:
.center-text {
text-align: center;
}- 使用
display: flex方法:
.center-text {
display: flex;
justify-content: center;
}- 使用
margin自动填充:
.center-text {
width: 50%;
margin: 0 auto;
}- 使用
display: grid方法:
.center-text {
display: grid;
place-items: center;
}
评论已关闭