1. CSS에서 Text-Align Center 속성으로 텍스트를 중앙 정렬하는 방법
2. CSS에서 Margin Auto로 Div를 중앙 정렬하는 방법
1. HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Center</title>
<link rel="stylesheet" href="center.css">
</head>
<body>
<div class="container">
<p>Hello, (centered) World!</p>
</div>
<div class="container">
<div class="child"></div>
</div>
</body>
</html>
2. CSS
.container {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.5rem;
margin: 25px; /* 마진 - 위, 오른쪽, 아래, 왼쪽 */
width: 350px; /* 너비 */
height: 200px; /* 높이 */
border: 1px solid #000; /* 테두리 */
outline: dashed 1px red;
}
p {
text-align: center;
line-height: 100px;
margin: 5px;
padding: 5px;
border: 1px solid blue;
}
.child {
width: 50px;
height: 50px;
background-color: red;
margin: 0 auto; /* 수평 가운데 정렬 */
border: 1px solid blue;
}
3. 실행 결과