1. <!DOCTYPE html>
    2. <html lang="zh-CN">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
    6. <meta name="viewport"
    7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum=1.0, user-scalable=no">
    8. <title>子绝父相</title>
    9. <link rel="stylesheet" href="index.css">
    10. </head>
    11. <body>
    12. <div class="father">
    13. <div class="son"></div>
    14. </div>
    15. </body>
    16. </html>
    .father {
      height: 500px;
      background-color: blue;
      position: relative;
    }
    
    .son {
      width: 200px;
      height: 200px;
      background-color: skyblue;
      position: absolute;
      top: calc(50% - 200px / 2);
      left: calc(50% - 200px / 2);
    }
    

    image.png