-
Notifications
You must be signed in to change notification settings - Fork 0
/
032_band_aid.html
46 lines (46 loc) · 1.03 KB
/
032_band_aid.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
<!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>Band Aid</title>
<style>
* {
margin: 0;
}
section{
position: relative;
width: 400px;
height: 300px;
border: 1px solid black;
background: white;
display: flex;
justify-content: center;
align-items: center;
}
p {
position: absolute;
width: 50px;
height: 200px;
background: #F3AC3C;
transform: rotate(-45deg);
}
p:nth-child(2){
background: #A3A368;
transform: rotate(45deg);
}
p:nth-child(3){
height: 50px;
background: #FBE18C;
}
</style>
</head>
<body>
<section>
<p></p>
<p></p>
<p></p>
</section>
</body>
</html>