Use pictures to realize personalized underline of hyperlinks

Use pictures to realize personalized underline of hyperlinks
Don't be surprised if you see some kind of underlined link in the picture. Because it’s actually very simple and you can do it, too.
Check out the actual effect here http://5key.net/demo/hyperlink-underline
uploads/200710/29_094308_1.gif
First, let's talk about how to get this colored underline. Maybe you have guessed it, a gradient background image. That’s right! It’s the picture below.
uploads/200710/29_100223_2.gif
Take a look at the CSS below. I think you should have understood the effect of the entire link change.
If it's not too clear. Let's first understand the concept of sliding door body {
font-size:14px;
font-family: Helvetica, sans-serif;
padding:10px;
margin:0px;
}
h1{margin:0; padding:0; font-size:16px; }
p{padding:20px 0 0 0;}
a{
*padding-bottom:1px;
text-decoration:none;
}
a:link{
color:#06F;
background: url(1.gif);
background-repeat: repeat-x;
background-position: 0 16px;
}
a:visited{
color:#06f;
background-image: url(1.gif);
background-repeat: repeat-x;
background-position: 0 16px;
}
a:hover{
color:#039;
background:url(1.gif) repeat-x 0 bottom;
}

<<:  How to use shell to perform batch operations on multiple servers

>>:  Unable to define IE6 font: 13px size is invalid, IE6 automatically displays a larger font solution

Recommend

JS native 2048 game source code sharing (the latest on the Internet)

I have been learning about algorithms recently an...

Vue handwriting loading animation project

When the page is not responding, displaying the l...

An example of elegantly writing status labels in Vue background

Table of contents Preface optimization Extract va...

How to use vue.js to implement drag and drop function

Preface Adding drag and drop functionality is a g...

Let's learn about MySQL database

Table of contents 1. What is a database? 2. Class...

Detailed summary of MySQL and connection-related timeouts

MySQL and connection related timeouts Preface: To...

CentOS 8 custom directory installation nginx (tutorial details)

1. Install tools and libraries # PCRE is a Perl l...

5 Tips for Protecting Your MySQL Data Warehouse

Aggregating data from various sources allows the ...

Analysis and description of network configuration files under Ubuntu system

I encountered a strange network problem today. I ...

MySQL 8.0.13 installation and configuration graphic tutorial

Msyql database installation, for your reference, ...