代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .father { position: relative; width: 400px; height: 400px; border: 1px solid black; } .son { top: 50%; left: 50%; position: absolute; /* margin-left: -50px; margin-top: -50px; */ transform: translate(-50%,-50%); width: 100px; height: 100px; background-color: pink; } </style> </head> <body> <div class="father"> <div class="son"></div> </div> </body> </html>
之前一直使用的是利用margin将盒子拖转回去,现在可以使用位移50%的方式使得盒子居中显示。