定位的盒子居中方法
阿新 • • 發佈:2019-02-18
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> .box{ width: 400px; height: 200px; background-color: red; /*使用了position定位屬性的盒子就無法使用margin:200px auto;居中了*/ position: absolute; top:200px; /*就要使用以下兩種方式*/ /*1.盒子傳統居中方式 left:50%; margin-left:-200px;*/ /*2. 使用css3 來實現居中*/ left:50%; /* 向左走自身寬度的一半*/ transform:translate(-50%); } </style> </head> <body> <div class="box"></div> </body> </html>