-
Notifications
You must be signed in to change notification settings - Fork 0
/
Battle #30
49 lines (49 loc) · 856 Bytes
/
Battle #30
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
<!--#30 Challenge Completed-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
justify-content:cemter;
display:flex;
align-items:center;
}
.rect-1 {
margin-top:-250px;
margin-left:-45px;
position:absolute;
width: 500px;
height: 50px;
background:#F7EC7D;
}
.rect-2 {
margin-top:-150px;
margin-left:-45px;
position:absolute;
width: 500px;
height: 50px;
background:#E38F66;
}
.rect-3 {
margin-left:-45px;
position:absolute;
width: 500px;
height: 100px;
background:#AA445F;
}
.rect-4 {
margin-top:200px;
margin-left:-45px;
position:absolute;
width: 500px;
height: 100px;
background:#62306D;
}</style>
</head>
<body>
<div class="rect-1"></div>
<div class="rect-2"></div>
<div class="rect-3"></div>
<div class="rect-4"></div>
</body>
</html>