-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
63 lines (53 loc) · 757 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
56
57
58
59
60
61
62
div /* <=== This Is Selectors */
{
background-color: bisque;
height: 600px;
}
span
{ /* <=== This Is Decleration */
font-size: 50px; /* Key: Value, */
}
h1{
color: blue;
font-size: 20px;
}
p{
font-weight: bold;
}
#pera{
color: brown;
}
.Img{
width: 400px;
height: 400px;
}
#one{
background-color: chartreuse;
position: fixed;
/* position: sticky; */
/* position: relative; */
/* position: absolute; */
/* top: 10px; */
}
#two{
background-color: cyan;
}
#three{
background-color: darkblue;
}
/* Navber */
body{
height: 1200px;
margin: 0px;
}
table{
background-color: black;
width: 150%;
position: fixed;
}
tr{
color: white;
}
a{
color: white;
}