Vor allem kannst du auch nach Elementtypen unterscheiden:
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
<html>
<head>
<style rel="stylesheet" type="text/css">
<!--
table.td2 {
border-style: solid;
border-color: red;
border-width: 2px;
}
td.td2 {
border-style: solid;
border-color: black;
border-width: 1px;
}
-->
</style>
</head>
<body>
<table class="td2">
<tr>
<td class="td2">Zelle1</td>
<td>Zelle2</td>
</tr>
</table>
</body>
</html>
Gruß Alex