Home  >  Article  >  Web Front-end  >  Using CSS to change the color of the link when we move the mouse pointer over the row

Using CSS to change the color of the link when we move the mouse pointer over the row

WBOY
WBOYforward
2023-08-28 23:49:101079browse

当我们将鼠标指针移到该行上时使用 CSS 更改链接的颜色

Use the :hover class to change the color of a link when the mouse pointer hovers over it.

Example

<html>
   <head>
      <style>
         a:hover {
            color: #FFCC00
         }
      </style>
   </head>
   <body>
      <a href = "">Bring Mouse Over Here</a>
   </body>
</html>

The above is the detailed content of Using CSS to change the color of the link when we move the mouse pointer over the row. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete