标签:abs height margin absolute nsf position osi display ott
width: 200px;
height:200px;
background: pink;
// 方案1
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
margin: auto;
//方案2
position:absolute;
top:50%;
left:50%;
transfrom:translate(-50%,-50%);
}
//方案3
width:500px;
height: 500px;
background: gray;
display: flex;
justify-content: center; // 主轴水平居中
align-items: center; // 侧轴居中
}
标签:abs height margin absolute nsf position osi display ott
原文地址:https://www.cnblogs.com/mengzhongfeixue/p/11929890.html