hi,
wie färbt man denn einen tablehead ein? #000066
Das erledigt man mit CSS,
CSS
---
table {
width: 400px;
border: 1px solid #000;
border-collapse: collapse;
}
th, td {
text-align: left;
vertical-align: top;
padding: 4px 0 0 10px;
border-bottom: 1px solid #000;
}
th {
border-right: 1px solid #000;
}
thead th, tfoot td {
padding: 4px 0 4px 35px;
}
thead th {
background-color: #006;
}
tfoot td {
background-color: #F00;
}
HTML
----
<table>
<thead>
<tr><th colspan="2">Keys und Values</th></tr>
</thead>
<tfoot>
<tr><td colspan="2">Daten ende</td></tr>
</tfoot>
<tbody>
<tr>
<th>Key</th> <td>Value</td>
</tr>
<tr>
<th>Key</th> <td>Value</td>
</tr>
<tr>
<th>Key</th> <td>Value</td>
</tr>
</tbody></table>
grüße