关于盒子的水平垂直居中几种方案
程序员文章站
2022-12-21 11:33:36
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; }
上一篇: 倒立可以让眼泪流回眼睛里
下一篇: CEF避坑指南(一)——编译并自制浏览器