Pure CSS to achieve horizontal line animation under the element (background-image)

Pure CSS to achieve horizontal line animation under the element (background-image)

Effect picture:

html:

<div class='site_bar'>Home</div>
css:
.site_bar{
  background-image : linear-gradient(red,red);
  background-position : center bottom;
  background-size : 0 2px;
  background-repeat : no-repeat; //This attribute cannot be missing.
  transition : .3s;
}
.site_bar:hover{
  background-size : 100% 2px;
}

Summarize

The above is the pure CSS implementation of horizontal line animation (background-image) under the element introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Some questions about hyperlinks

>>:  JavaScript imitates Jingdong magnifying glass effect

Recommend

How to use nginx to block a specified interface (URL)

1. Introduction Sometimes, after the web platform...

Baidu Input Method opens API, claims it can be ported and used at will

The relevant person in charge of Baidu Input Metho...

Implementation of Nginx domain name forwarding https access

A word in advance: Suddenly I received a task to ...

Causes and solutions to the garbled character set problem in MySQL database

Preface Sometimes when we view database data, we ...

Graphic tutorial on installing CentOS7 on VMware 15.5

1. Create a new virtual machine in VMware 15.5 1....

How to configure MySQL8 in Nacos

1. Create the MySQL database nacos_config 2. Sele...

The magic of tr command in counting the frequency of English words

We are all familiar with the tr command, which ca...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

Vue globally introduces scss (mixin)

Table of contents 1. mixin.scss 2. Single file us...

Implementation of MySQL Multi-version Concurrency Control MVCC

Table of contents What is MVCC MVCC Implementatio...

Vue installation and use

Table of contents 1. Vue installation Method 1: C...

Node and Python two-way communication implementation code

Table of contents Process Communication Bidirecti...

HTTP Status Codes

This status code provides information about the s...