공간 분할 태그
- <div> 태그 : block 형식으로 공간 분할
- <span> 태그: inline 형식으로 공간 분할
div.html
<!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>div, span</title>
<style>
div {background-color: aquamarine; width: 100px; height: 60px; border: 1px solid;}
span {background-color: aquamarine;border-color: black;}
</style>
</head>
<body>
<div>div1</div>
<div>div2</div>
<div>div3</div>
<div>div4</div>
<br>
<span>span1</span>
<span>span2</span>
<span>span3</span>
<span>span4</span>
</body>
</html>
- div 중첩
<!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>div중첩</title>
</head>
<body>
<div>
<div></div>
<div></div>
<div></div>
</div>
<br>
</body>
</html>
'Front > HTML' 카테고리의 다른 글
HTLM 연습문제 (0) | 2021.12.05 |
---|---|
HTML - HTML5 시멘틱 구조 태그 (0) | 2021.12.05 |
HTML - 입력 양식 태그 (0) | 2021.12.05 |
HTML - 문서 삽입 태그, 오디오/비디오 태그 (0) | 2021.12.05 |
HTML - 이미지 태그 (0) | 2021.12.05 |