How to change the color of the entire row (tr) when the mouse stops in HTML

How to change the color of the entire row (tr) when the mouse stops in HTML

Use pure CSS to change the background color of a row when the mouse passes over it to indicate that the row is in focus:

<html>
<head>
<meta charset="utf-8"/>
<title>change</title>
<style type="text/css">
  tr.change:hover
  {
    background-color:#00FF00
  }
</style>
</head>
<body>
<h1>Change color when the mouse is stopped</h1>
<table width="80%" border="1" align="center">
  <tr class="change">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr class="change">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>

The above is what I introduced to you about how to change the color of the entire row (tr) when the mouse stops in HTML. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  A brief analysis of JS original value and reference value issues

>>:  In-depth study of MySQL multi-version concurrency control MVCC

Recommend

MySQL MyISAM default storage engine implementation principle

By default, the MyISAM table will generate three ...

Use three.js to achieve cool acid style 3D page effects

This article mainly introduces how to use the Rea...

Ubuntu 20.04 Chinese input method installation steps

This article installs Google Input Method. In fac...

Website design should pay attention to the sense of color hierarchy

Recently I have been saying that design needs to h...

Solution for Tomcat to place configuration files externally

question When we are developing normally, if we w...

How to use mixins in Vue

Table of contents Preface How to use Summarize Pr...

Detailed description of component-based front-end development process

Background <br />Students who work on the fr...

How to set Tomcat as an automatically started service? The quickest way

Set Tomcat to automatically start the service: I ...

Tips for writing concise React components

Table of contents Avoid using the spread operator...

MySQL 5.6.37 (zip) download installation configuration graphic tutorial

This article shares the download, installation an...

Will CSS3 really replace SCSS?

When it comes to styling our web pages, we have t...

An example of elegantly writing status labels in Vue background

Table of contents Preface optimization Extract va...

Introduction to the use of MySQL official performance testing tool mysqlslap

Table of contents Introduction Instructions Actua...