<!DOCTYPE html><html lang="zh-CN"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum=1.0, user-scalable=no"> <title>子绝父相</title> <link rel="stylesheet" href="index.css"></head><body> <div class="father"> <div class="son"></div> </div></body></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);
}
