ex07.css
584 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
table{
border-collapse: collapse;
padding: 20px;
}
th{
padding: 20px;
}
tr{
border-bottom: 2px solid gray;
}
td{
padding: 20px;
}
#number{
text-align: center;
color: white;
background-color: green;
}
#title{
text-align: left;
color:white;
background-color: green;
}
#date{
text-align: center;
color: white;
background-color: green;
}
#user{
text-align: center;
color: white;
background-color: green;.
}
td.number{
text-align: center
}
td.title{
text-align: left;
color:blue;
}
td.date{
text-align: center;
}
td.user{
text-align: center;
}