25 lines
587 B
CSS
25 lines
587 B
CSS
/* Tabellenkopf in roter Schrift */
|
|
th {
|
|
color: red;
|
|
}
|
|
|
|
/* Abwechselnde Zeilenfarben in der Tabelle: lightblue und white */
|
|
tr:nth-child(even) td {
|
|
background-color: lightblue;
|
|
}
|
|
|
|
tr:nth-child(odd) td {
|
|
background-color: white;
|
|
}
|
|
|
|
/* Hintergrundfarbe für die Absätze 2, 4 und 5 auf gelb setzen */
|
|
/* section > p:nth-of-type(2),
|
|
section > section > p:nth-of-type(2),
|
|
section > p:nth-of-type(3) {
|
|
background-color: yellow;
|
|
} */
|
|
|
|
/* Gelber Hintergrund für alle Absätze außer dem ersten in jeder Section */
|
|
section p:not(:first-of-type) {
|
|
background-color: yellow;
|
|
} |