caption { font-style: italic; }
table, th, td { border: 1px solid darkorange; }
tr:first-of-type { background-color: lightblue; } /* first row */
tr:nth-child(even) { background-color: lightgray; } /* every second row */
td:nth-of-type(even) { color: blue; } /* columns */
td:last-of-type, th:last-of-type { background-color: violet; } /* last row of td & th */
tr:last-of-type { color: green; } /* last row */
row1 | row1 | row1 | row1 |
---|---|---|---|
row2 | row2 | row2 | row2 |
row3 | row3 | row3 | row3 |
row4 | row4 | row4 | row4 |
row5 | row5 | row5 | row5 |