01.
<style type=
"text/css"
>
02.
table.sample {
03.
border-width: 1px;
04.
border-spacing: 2px;
05.
border-style: outset;
06.
border-color: gray;
07.
border-collapse: separate;
08.
background-color: white;
09.
}
10.
table.sample th {
11.
border-width: 1px;
12.
padding: 1px;
13.
border-style: inset;
14.
border-color: gray;
15.
background-color: white;
16.
-moz-border-radius: ;
17.
}
18.
table.sample td {
19.
border-width: 1px;
20.
padding: 1px;
21.
border-style: inset;
22.
border-color: gray;
23.
background-color: white;
24.
-moz-border-radius: ;
25.
}
26.
</style>
27.
28.
<table
class
=
"sample"
>
29.
<tr>
30.
<th>Header</th>
31.
<td>Content</td>
32.
</tr>
33.
</table>