-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (49 loc) · 914 Bytes
/
style.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
div {
margin: 20px;
border: 2px solid red;
padding: 40px;
background-color: gray;
color: white;
}
p {
font-size: 3em;
color:green;
font-weight: bolder;
text-align: center;
}
.relative {
font-size: 1.2em;
background-color: cyan;
padding: 15px;
border: 3px dotted yellow;
color: royalblue;
position: relative;
}
.alterada {
top: 20px;
left: 20px;
}
.absolute {
height: 40px;
width: 140px;
background-color: blueviolet;
position: absolute;
top: 10px;
right: 20px;
}
.fixed {
border: 5px double blue;
background-color: sandybrown;
color: black;
position: fixed;
top: 70px;
left: 70px;
}
.sticky {
border: 5px double palevioletred;
background-color:navajowhite;
color: black;
position: sticky;
top:40px;
right: 100px;
}