CSS – Change Background Color of Table Cell upon Hover
To change background color of the table cell when user hovers over the cell using mouse pointer, set the CSS background-color
property with the required Color Value for the cell in table body with :hover
selector.
The CSS code to set tbody td:hover
selector, for table cells, with required background color value is showing in the following.
</>
Copy
tbody td:hover {
background-color: yellow;
}
Examples
1. Set background color of table cell to yellow on hover
In the following example, we take a table with two columns, three rows, and set the cell’s background color to yellow when user hovers over a table cell.
index.html
</>
Copy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
tbody td:hover {
background-color: yellow;
}
table, th, td {
border: 1px solid;
border-collapse: collapse;
padding: 10px;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Fruit</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apple</td>
<td>32</td>
</tr>
<tr>
<td>Banana</td>
<td>48</td>
</tr>
<tr>
<td>Cherry</td>
<td>75</td>
</tr>
</tbody>
</table>
</body>
</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 cell’s background when mouse is hovered upon it, with examples.