标签:width color nbsp translate orm osi tran round 宽度
<body> <div class="center"> .... </div> </body>
让left和top都是50%,这在水平方向上让div的最左与屏幕的最左相距50%,垂直方向上一样,所以再用transform向左(上)平移它自己宽度(高度)的50%,也就达到居中效果了
.center{ text-align: center; background-color: #fff; border-radius: 20px; width: 300px; height: 350px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
标签:width color nbsp translate orm osi tran round 宽度
原文地址:https://www.cnblogs.com/caster-xzn/p/10309373.html