Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Hallo,
kann ich per CSS eine Tabelle gestalten?
Ich möchte:
- Jede gerade Zeile BLAU, Schrift WEISS
- Jede ungerade Zeile CYAN, Schrift Schwarz
tr:nth-child(odd) {
background-color: #3C53C2; <!-- Blau -->
color: #ffffff;
}
tr:nth-child(even) {
background-color: #ffffff; <!-- Weiss -->
color: #3C53C2;
}