关于盒子的水平垂直居中几种方案
程序员文章站
2022-05-18 20:16:10
HTML CSS 第一种 第二种 第三种 ......
html
<div class='father'> <div class='child'></div> </div>
css
第一种
.father { display: table-cell; text-align: center; vertical-align: middle; } .child { display: inline-block; }
第二种
.father { position: relative; } .child { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
第三种
.father { display: flex; justfy-content: center; align-items: center; }
上一篇: Python Web(二)
下一篇: element-ui表单验证无效解决