<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>CSS | 元素居中</title>
<style>
body {
margin: 0 auto;
align-content: center;
}
.parent {
width: 480px;
height: 480px;
background-color: lightgray;
display: flex;
align-items: center;
justify-content: center;
}
.child {
width: 400px;
height: 400px;
background-color: lightblue;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>
相关文章: