-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathG.html
More file actions
30 lines (28 loc) · 814 Bytes
/
Copy pathG.html
File metadata and controls
30 lines (28 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>인라인, 블록 특성</title>
<style>
.green_box{
display:inline-block;
width:150px;
height:75px;
margin:10px;
border:solid 3px #73AD21;
}
</style>
</head>
<body>
<h2>인라인 + 블록 특성(display:inline-block)</h2>
<div class="green_box">박스 1</div>
<div class="green_box">박스 2</div>
<div class="green_box">박스 3</div>
<div class="green_box">박스 4</div>
<div class="green_box">박스 5</div>
<div class="green_box">박스 6</div>
<br><br>
<a href="index.html">홈으로</a>
</body>
</html>