
<!DOCTYPE html>
<html lang="en">
<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>
<style>
/* 블록 태그의 가운데 정렬*/
.box{
height: 100px;
width: 400px;
background-color: yellow;
margin: 0 auto ;
}
/*인라인 태그의 가운데 정렬*/
.box2{ /*블록태그 조상들 중에 가장 가까운 요소에 align 이 적용됨*/
text-align: center;
}
</style>
</head>
<body>
<div class="box"> </div>
<div class="box2"><span>안녕하세요.</span></div>
</body>
</html>
'괴발개발 > Html+CSS' 카테고리의 다른 글
CSS_background image (0) | 2021.06.09 |
---|---|
CSS_박스 그림자 만들기 (0) | 2021.06.09 |
CSS_width, height, line-height (0) | 2021.06.09 |
CSS_박스 구성 속성 (0) | 2021.06.08 |
CSS_선택자 종류 (0) | 2021.06.08 |