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> </td> <td> </td> </tr> <tr class="change"> <td> </td> <td> </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
By default, the MyISAM table will generate three ...
This article mainly introduces how to use the Rea...
This article installs Google Input Method. In fac...
Preface Recently, I encountered a requirement at ...
Recently I have been saying that design needs to h...
question When we are developing normally, if we w...
Table of contents Preface How to use Summarize Pr...
Background <br />Students who work on the fr...
This article shares the installation and configur...
Set Tomcat to automatically start the service: I ...
Table of contents Avoid using the spread operator...
This article shares the download, installation an...
When it comes to styling our web pages, we have t...
Table of contents Preface optimization Extract va...
Table of contents Introduction Instructions Actua...