0


div文字居中方法

1、上下居中(垂直居中)

style="height: 28px;
       display: flex;
       flex-direction: row;
       align-items: center;"

2、左右居中(水平居中)

style="height: 28px;
       display: flex;
       flex-direction: row;
       justify-content: center;"

3、左右居中(水平居中)

style="display: flex;
       flex-direction: column;
       align-items: center;"

4、居中(水平、垂直居中)

style="height: 28px;
       display: flex;
       flex-direction: row;
       align-items: center;
       justify-content: center;
       background: #b2b2c5;
       border-radius: 2px"

效果预览:

标签: 前端 css html

本文转载自: https://blog.csdn.net/wangyuntuan/article/details/128520982
版权归原作者 wangyuntuan 所有, 如有侵权,请联系我们删除。

“div文字居中方法”的评论:

还没有评论