1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.example1 {
font-weight: bold;
font-size: 14px
}
.example2 {
font-weight: bold;
font-size: 12px;
color: #FF0000
}
tr.tablerow1 {
background-color: #BBBBBB;
}
p.red {color:red;}
strong.red {color: red;}
strong.red.italic {color: red; font-style: italic;}
|