Summary of CSS gradient effects (linear-gradient and radial-gradient)

Summary of CSS gradient effects (linear-gradient and radial-gradient)

Linear-gradient

background-image: 
linear-gradient(to direction, start color, middle color 1, middle color 2, ... , end color);

Combination of four directions - eight directions
top, right, bottom, left

angle
90deg

radial-gradient

background-image: 
radial-gradient(size shape at direction, start color, middle color 1, middle color 2, ..., end color);

Size: a value for the radius of a circle or two values ​​for the semi-major and semi-minor axes of an ellipse as percentages/pixels

shape

circle
ellipse

Direction Percentage/Pixel

closest-side/closest-corner/farthest-side/farthest-corner

background-image: radial-gradient(800px circle at 50% 50%, #2CD8D5 0%, #C5C1FF 56%, #FFBAC3 100%); 

Summarize

This concludes this article about the summary of CSS gradient effects (linear-gradient and radial-gradient). For more relevant CSS gradient effect content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Some settings of Div about border and transparency

>>:  Detailed steps for QT to connect to MYSQL database

Recommend

CSS pseudo-element::marker detailed explanation

This article will introduce an interesting pseudo...

Analysis of the principles of docker containers

Table of contents 01 What is the essence of a con...

Detailed tutorial on installing Mysql5.7.19 on Centos7 under Linux

1. Download MySQL URL: https://dev.mysql.com/down...

Solution to Nginx session loss problem

In the path of using nginx as a reverse proxy tom...

Modification of the default source sources.list file of ubuntu20.04 LTS system

If you accidentally modify the source.list conten...

Summary of MySQL slow log practice

Slow log query function The main function of slow...

Using MySQL database in docker to achieve LAN access

1. Get the mysql image docker pull mysql:5.6 Note...

Detailed explanation of the installation and use of Vue-Router

Table of contents Install Basic configuration of ...

How to delete node_modules and reinstall

Table of contents Step 1: Install node_modules in...

MySQL optimization connection optimization

In the article MySQL Optimization: Cache Optimiza...

Vue simple implementation of turntable lottery

This article shares the specific code of Vue to s...