<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>居中</title>
<style type="text/css">
.container {
display: flex;
justify-content:center; /*水平居中*/
align-items:center; /*垂直居中*/
width: 200px;
height: 200px;
background-color: #ccc;
}
.center-p {
background-color: yellow;
}
</style>
</head>
<body>
<div class="container">
<div class="center-p">
flex居中
</div>
</div>
</body>
</html>
Paste_Image.png