CSS – Change Background Color of Table Row upon Hover

To change background color of the table row when user hovers over the row using mouse pointer, set the CSS background-color property with the required Color Value for the rows in table body with :hover selector.

The CSS code to set tbody tr:hover selector, for table rows, with required background color value is showing in the following.

tbody tr:hover {
  background-color: yellow;
}

Examples

ADVERTISEMENT

1. Set background color of table row to yellow on hover

In the following example, we take a table with two columns, three rows, and set the row’s background color to yellow when user hovers over a table row.

index.html

Conclusion

In this CSS Tutorial, we learned how to use CSS :hover selector and background-color property to set a specific color for the table row’s background when mouse is hovered upon it, with examples.