<html lang="ko">
<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">
<title>가운데정렬</title>
</head>
<body>
<div class="parents">
<div class="children">Children</div>
</div>
</body>
</html>
.parents {
background-color: dodgerblue;
width: 200px;
height: 200px;
margin: 0 auto;
text-align: center;
}
.children {
background-color: orange;
width: 100px;
height: 100px;
margin: 0 auto;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.