-
Notifications
You must be signed in to change notification settings - Fork 0
/
position_example3.css
75 lines (66 loc) · 995 Bytes
/
position_example3.css
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
html {
background: #b3b3b3;
padding: 15px;
border: 5px solid white;
margin: 15px;
height: 2000px;
}
body {
background: white;
padding: 20px;
border: 5px solid black;
margin: 0;
height: 400px;
}
.navigation,
.headline,
.contact-us {
padding: 20px;
border: 5px solid black;
margin: 10px;
position: fixed;
}
.headline div {
background: rgb(105, 105, 109);
color: white;
padding: 10px;
border: 5px solid black;
margin: 10px;
width: 130px;
}
.navigation {
background: rgb(255, 109, 109);
top: 100px;
left: 100px;
width: 300px;
}
.headline {
background: rgb(77, 77, 248);
top: 150px;
left: 150px;
width: 270px;
height: 200px;
z-index: 1;
}
.contact-us {
background: rgb(69, 214, 69);
top: 180px;
left: 320px;
width: 180px;
z-index: 100;
}
.image-1 {
top: 200px;
left: 230px;
position: fixed;
}
.image-2 {
top: 230px;
left: 260px;
position: fixed;
}
.image-3 {
left: 300px;
top: 260px;
position: fixed;
}