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

WBOY
Release: 2023-08-28 23:49:10
forward
1122 people have browsed it

当我们将鼠标指针移到该行上时使用 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>
Copy after login

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!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template