-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoxTest.html
77 lines (74 loc) · 2.03 KB
/
BoxTest.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<charset = "UTF-8"/>
<style>
.box1 {
font-size: 10px;
text-align: center;
width : 100px;
height : 100px;
background-color : green;
color : white;
padding : 10px;
margin : 10px;
z-index: 1;
border-radius: 10px;
position:fixed;
top:100px;
left:500px;
}
.box2 {
font-size: 10px;
text-align: center;
width : 100px;
height : 100px;
background-color : yellow;
color : black;
padding : 10px;
margin : 10px;
z-index: 2;
position:fixed;
top:150px;
left:550px;
border-radius: 10px;
}
.box3 {
font-size: 10px;
text-align: center;
width : 100px;
height : 100px;
background-color : blue;
color : white;
padding : 10px;
margin : 10px;
z-index: 3;
position:fixed;
top:200px;
left:600px;
border-radius: 10px;
}
.box4 {
font-size: 10px;
text-align: center;
width : 100px;
height : 100px;
background-color : red;
color : white;
padding : 10px;
margin : 10px;
z-index: 4;
position:fixed;
top:250px;
left:650px;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="box1">box1 : 배경색-green, 글자색-white, padding/margin-10px</div>
<div class="box2">box2 : 배경색-yellow, 글자색-black, padding/margin-10px</div>
<div class="box3">box3 : 배경색-blue, 글자색-white, padding/margin-10px</div>
<div class="box4">box4 : 배경색-red, 글자색-white, padding/margin-10px</div>
</body>
</html>