zl程序教程

您现在的位置是:首页 >  其它

当前栏目

DIV在整个页面居中

页面 div 居中 整个
2023-09-27 14:25:30 时间
.content {
    width: 428px;
    height: 528px;
    border: 1px solid red;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);            
}