How to underline the a tag and change the color before and after clicking

How to underline the a tag and change the color before and after clicking

Copy code
The code is as follows:

a:link {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:visited {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #999999;
text-decoration: underline;
}

Defining the style sheet in this way can achieve your function. If you don’t know the style sheet, you can add the following code to the <head></head> tag of your page:

Copy code
The code is as follows:

<style type="text/css">
<!--
a:link {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:visited {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #999999;
text-decoration: underline;
}
-->
</style>

<<:  Detailed explanation of the idea of ​​implementing dynamic effect of lyrics progress text color filling change using CSS3

>>:  A brief analysis of Linux network programming functions

Recommend

Theory Popularization——User Experience

1. Concept Analysis 1: UE User Experience <br ...

MySQL backup table operation based on Java

The core is mysqldump and Runtime The operation i...

Detailed explanation of the solution to forget the password in MySQL 5.7

ENV: [root@centos7 ~]# uname -r 3.10.0-514.el7.x8...

CSS realizes the layout method of fixed left and adaptive right

1. Floating layout 1. Let the fixed width div flo...

Defining the minimum height of the inline element span

The span tag is often used when making HTML web p...

VMware Workstation 14 Pro installs CentOS 7.0

The specific method of installing CentOS 7.0 on V...

How to use the Linux more command in Linux common commands

more is one of our most commonly used tools. The ...

CSS menu button animation

To write a drop-down menu, click the button. The ...

Share the problem of Ubuntu 19 not being able to install docker source

According to major websites and personal habits, ...

mysql-5.7.28 installation tutorial in Linux

1. Download the Linux version from the official w...

Not a Chinese specialty: Web development under cultural differences

Web design and development is hard work, so don&#...

Solve the problem of mysql's int primary key self-increment

Introduction When we use the MySQL database, we a...

Some data processing methods that may be commonly used in JS

Table of contents DOM processing Arrays method Su...