CSS Table Hover Color

  • Post category:CSS

Get the code of CSS Table Hover Color and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<table>
	<tr>
  	<th>First Name</th>
    <th>City</th>
  </tr>
  <tr>
  	<td>Donald</td>
    <td>New York</td>
  </tr>
  <tr>
  	<td>AJ style</td>
    <td>Delhi</td>
  </tr>
  <tr>
  	<td>Biden</td>
    <td>Washington</td>
  </tr>
</table>
table, th, td {
  border-collapse: collapse;
}
table {
  width: 100%;
}
th, td {
  border-bottom: 2px solid gray;
  padding: 5px;
  text-align: left;
}
tr:hover {
  background: coral;
}