-
Notifications
You must be signed in to change notification settings - Fork 987
Expand file tree
/
Copy pathposition-page.css
More file actions
52 lines (51 loc) · 850 Bytes
/
position-page.css
File metadata and controls
52 lines (51 loc) · 850 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
49
50
51
52
nav {
position: fixed;
padding-top: 10px;
padding-left: 60px;
padding-right: 60px;
background-color: grey;
text-align: right;
display: inline-flex;
width: 100%;
height: 70px;
}
body{
background: url(/home/khalsa/Documents/css_layout_exercises_starter_files/images/outerspace_landscape.jpeg);
background-size: cover;
}
ul {
list-style: none;
}
li {
display: inline-flex;
border-right: 2px solid black;
}
.logo {
border-radius: 50%;
border: 1px solid black;
width: 50px;
height: 50px;
}
.box {
position: relative;
border: 10px dotted green;
top: 300px;
left: 300px;
width: 600px;
height: 300px;
}
img {
border: 1px solid blue;
width: 200px;
height: 200px;
}
.img-cat{
position: absolute;
top: -90px;
left: -90px;
}
.img-dog{
position: absolute;
bottom: -120px;
right: -60px;
}