-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_16.html
More file actions
39 lines (37 loc) · 798 Bytes
/
Copy pathExample_16.html
File metadata and controls
39 lines (37 loc) · 798 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 200px;
height: 200px;
border: 1px solid black;
float: left;
margin-right: 10px;
text-align: center;
line-height: 12em;
}
/* .box1{
background-color: yellow;
}
.box2{
background-color: blue;
}
.box3{
background-color: green;
} */
.box4{
background-color: orange;
float: right;
}
</style>
</head>
<body>
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box4">box4</div>
</body>
</html>