table hover background color css

 table hover background color css


<head>

<style>

tr:hover

 {

background-color:#f5f5f5;

</style> 

</head>

 <body>

 ​ <h2>Hoverable Table</h2>

 <p>Move the mouse over the table rows to see the effect.</p>


Full Source code of table hover background color css

<html>

<head>

<style>

table {

  border-collapse: collapse;

  width: 100%;

}


th, td {

  padding: 8px;

  text-align: left;

  border-bottom: 1px solid #ddd;

}


tr:hover {

background-color:#f5f5f5;

}

</style>

</head>

<body>


<h2>Hoverable Table</h2>

<p>Move the mouse over the table rows to see the effect.</p>


<table>

  <tr>

    <th>First Name</th>

    <th>Last Name</th>

    <th>Points</th>

  </tr>

  <tr>

    <td>Peter</td>

    <td>Griffin</td>

    <td>$100</td>

  </tr>

  <tr>

 ​

Comments

Last 7 Days

How to use referrerpolicy Attribute value ( no-referrer-when-downgrade ) with < iframe > tag in HTML ? with example

How to use autoplay and mute attribute with < video > tag in HTML for youtube ? with example

How to use Local Variable for whose values are present till function is executing in solidity ?

How to add Amazon website inside iframe?

How to use comments in Solidity programming language ?

How to use string in Solidity programming language ?

How to use arrays in Solidity programming language ?