@@Tucklemuck:
nuqneH
Übrigens gibt es in Tabellen für "kopf" die Elemente <thead> und <th>.
Das wusste ich, aber ich wollte in der Tabellen nicht nur die erste Zeile anders formatieren, sondern auch die erste Spalte. Daher die class kopf.
Die Klasse "kopf" ist unsinnig. Wie Cheatah schon sagte, ist für Kopfzellen der Elementtyp 'th' angedacht. Spaltenköpfe stehen im 'thead'; Zeilenköpfe im 'tbody':
<table>
<thead>
<tr>
<th/>
<th>Spalte 1</th>
<th>Spalte 2</th>
</tr>
</thead>
<tbody>
<tr>
<th>Zeile 1</th> <!-- nicht 'td' -->
<td>Zelle 1 1</td>
<td>Zelle 1 2</td>
</tr>
<tr>
<th>Zeile 2</th> <!-- nicht 'td' -->
<td>Zelle 2 1</td>
<td>Zelle 2 2</td>
</tr>
</tbody>
</table>
Dann kannst im Stylesheet du alle Kopfzellen mit 'th
' selektieren oder per Nachfahrenselektor 'thead th
' bzw. 'tbody th
' Spalten- und Zeilenköpfe getrennt.
Qapla'
--
Gut sein ist edel. Andere lehren, gut zu sein, ist noch edler. Und einfacher.
(Mark Twain)
Gut sein ist edel. Andere lehren, gut zu sein, ist noch edler. Und einfacher.
(Mark Twain)