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

Examples of optimistic locking and pessimistic locking in MySQL

The task of concurrency control in a database man...

Solve the scroll-view line break problem of WeChat applet

Today, when I was writing a small program, I used...

How to change the default character set of MySQL to utf8 on MAC

1. Check the character set of the default install...

Some issues we should pay attention to when designing a web page

Web design, according to personal preferences and ...

Sample code for implementing DIV suspension with pure CSS (fixed position)

The DIV floating effect (fixed position) is imple...

XHTML introductory tutorial: Web page Head and DTD

Although head and DTD will not be displayed on th...

Introduction to Jenkins and how to deploy Jenkins with Docker

1. Related concepts 1.1 Jenkins Concepts: Jenkins...

Summary of 6 solutions for implementing singleton mode in JS

Preface Today, I was reviewing the creational pat...

Does the website's text still need to be designed?

Many people may ask, does the text on the website...

Detailed explanation of Truncate usage in MySQL

Preface: When we want to clear a table, we often ...

How to encapsulate query components based on element-ui step by step

Table of contents Function Basic query functions ...

Teach you how to install docker on windows 10 home edition

When I wrote the Redis book and the Spring Cloud ...

VMware kali virtual machine environment configuration method

1|0 Compile the kernel (1) Run the uname -r comma...

How to sort a row or column in mysql

method: By desc: Neither can be achieved: Method ...