-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzindex.css
More file actions
48 lines (45 loc) · 887 Bytes
/
Copy pathzindex.css
File metadata and controls
48 lines (45 loc) · 887 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
40
41
42
43
44
45
46
47
48
body {
font-family: Helvetica, Arial, sans-serif;
}
div {
width: 200px;
height: 150px;
}
div h3 {
margin: 0;
padding: 0;
text-align: center;
font-size: 30xp;
font-weight: bold;
line-height: 150px;
color: #fff;
}
.orange {
margin-top: -50px;
margin-left: 20px;
position: relative;
background-color: orangered;
border: 5px solid deeppink;
z-index: 20;
}
.blue {
margin-bottom: 15px;
position: relative;
z-index: 50;
background-color: lightblue;
border: 5px solid blue;
}
.yellow {
position: absolute;
right:0;
top:0;
width: 100px;
height: 75px;
background-color: yellow;
border: 1px solid goldenrod;
}
.yellow h3 {
color: #000;
line-height: 75px;
z-index: 100;
}