如何让一个层垂直居中
作者:互联网
如何让一个层垂直居中
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;
标签:居中,top,50%,垂直,如何,150px,margin,left 来源: https://www.cnblogs.com/sexintercourse/p/15986874.html