-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
82 lines (80 loc) · 1.28 KB
/
style2.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
76
77
78
79
80
81
82
body{
background-image: url(backimg.jpg);
background-size: 100% 400px;
background-repeat: no-repeat;
}
header{
position: fixed;
width: 100%;
}
.flex-container{
display:flex;
font: 15px arial , sans-serif;
word-spacing: 5px;
}
.flex-container > div{
width: 100%;
background-color: rgb(39,33,33);
color: white;
margin: 0px;
}
.first{
background-color: yellow;
color: white;
width: 100%;
height:100px;
margin: 5px 0px;
padding: 4px;
}
img{
height: 100px; width: 100px;
}
.second{
height: 400px;
width: 100%;
margin: 5px;
padding: 4px;
background-image: url(backimg.jpg);
background-size: 100% 400px;
background-repeat: no-repeat;
}
.a{
background-color: yellow;
display: inline-block;
margin: 3px;
}
.a1{
background-color: green;
height: 100px;
width: 90px;
margin: 10px;
display: inline-block;
}
.b{
background-color: pink;
display: inline-block;
margin: 3px;
}
.b1{
background-color: green;
height: 100px;
width: 90px;
margin: 10px;
display: inline-block;
}
table{
background-color: whitesmoke;
padding: 4px 2px;
border-collapse: collapse;
margin-right: 3px;
width: 100px;
}
#firstrow{
background-color:aquamarine;
}
td{
border-bottom: 1px solid black;
}
th{
text-align:center;
}