Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

Table Styling

HTML Table – Zebra Stripes

Incorporating a background color on alternating table rows creates a pleasing zebra stripes effect.

IMG_3840

For styling every alternate table row element, employ the :nth-child(even) selector in this manner:

Example

tr:nth-child(even) {
  background-color: #D6EEEE;
}
Keep in mind: Substituting (odd) for (even) will result in styling on rows 1, 3, 5, etc., rather than 2, 4, 6, etc.

HTML Table – Vertical Zebra Stripes

For vertical zebra stripes, apply styling to every alternate column rather than every alternate row.

IMG_3841

Apply the :nth-child(even) selector to table data elements in this manner:

Example

td:nth-child(even), th:nth-child(even) {
  background-color: #D6EEEE;
}
Remember: Apply the :nth-child() selector to both th and td elements to apply the styling to both headers and regular table cells.

Combine Vertical and Horizontal Zebra Stripes

By merging the styling techniques from the two previous examples, you can achieve stripes on every alternate row and column.

Utilizing a transparent color will produce an overlapping effect.

IMG_3842

Specify the transparency of the color using the rgba() function.

Example

tr:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);
}

th:nth-child(even),td:nth-child(even) {
  background-color: rgba(150, 212, 212, 0.4);
}

Horizontal Dividers

IMG_3843

To create horizontal dividers in your table, apply borders exclusively at the bottom of each table row.

Include the border-bottom property for all tr elements.

Example

tr {
  border-bottom: 1px solid #ddd;
}

Hoverable Table

Apply the :hover selector to tr elements to highlight table rows when hovered over with the mouse.

IMG_3844

Example

tr:hover {background-color: #D6EEEE;}

 

Click to Learn