Ich verwende hierfür eine Tabelle mit alternativer Zeilenfarbe.
tr.d0 td {
background-color: #CC9999;
color: black;
}
tr.d1 td {
background-color: #9999CC;
color: black;
}
<table>
<tr class="d0">
<td>One</td>
<td>one</td>
</tr>
<tr class="d1">
<td>Two</td>
<td>two</td>
</tr>
</table>
Hier benutze ich Klasse für tr
, aber ich möchte nur für verwenden table
. Wenn ich Klasse für Tabelle verwende, gilt dies tr
alternativ.
Kann ich mein HTML so mit CSS schreiben?
<table class="alternate_color">
<tr><td>One</td><td>one</td></tr>
<tr><td>Two</td><td>two</td></tr>
</table>
Wie kann ich mithilfe von CSS festlegen, dass die Zeilen "Zebrastreifen" aufweisen?