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

Vue.set() and this.$set() usage and difference

When we use Vue for development, we may encounter...

mysql subquery and join table details

Table of contents 1. What is a subquery? 2. Self-...

MySQL 8.0.12 decompression version installation tutorial

This article shares the installation tutorial of ...

React tips teach you how to get rid of hooks dependency troubles

A very common scenario in react projects: const [...

Steps to use autoconf to generate Makefile and compile the project

Preface Under Linux, compilation and linking requ...

JavaScript dynamically generates a table with row deletion function

This article example shares the specific code of ...

CSS to achieve the small sharp corner effect of bubbles

Effect picture (the border color is too light, pu...

A brief introduction to Linux performance monitoring commands free

When the system encounters various IO bottlenecks...

MySQL time types and modes details

Table of contents 1. MySQL time type 2. Check the...

How to completely delete and uninstall MySQL in Windows 10

Preface This article introduces a tutorial on how...

Detailed process of SpringBoot integrating Docker

Table of contents 1. Demo Project 1.1 Interface P...