如何让一个层垂直居中


如何让一个层垂直居中

position: absolute;
top: 50%;
left: 50%;

如何让一个层向上垂直居中

position: absolute;
top: 50%;
left: 50%;
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 150px;
margin-top: -75px;
margin-left: -75px;
background: white;
border-radius: 16px;

 

posted on 2022-03-09 20:22  漫思  阅读(25)  评论(0编辑  收藏  举报

导航