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

Native js to achieve puzzle effect

This article shares the specific code of native j...

How to use vuex in Vue project

Table of contents What is Vuex? Vuex usage cycle ...

Examples of using HTML list tags dl, ul, ol

Copy code The code is as follows: <!-- List ta...

How to view Docker container application logs

docker attach command docker attach [options] 容器w...

Sharing tips on using Frameset to center the widescreen

Copy code The code is as follows: <frameset co...

A simple way to restart QT application in embedded Linux (based on QT4.8 qws)

Application software generally has such business ...

Using CSS3 and JavaScript to develop web color picker example code

The web color picker function in this example use...

JavaScript implements page scrolling animation

Table of contents Create a layout Add CSS styles ...

Understanding and application of JavaScript ES6 destructuring operator

Table of contents Preface The role of deconstruct...

mysql installer community 8.0.12.0 installation graphic tutorial

This tutorial shares the installation of mysql in...

Simply learn various SQL joins

The SQL JOIN clause is used to join rows from two...

Master-slave synchronization configuration of Mysql database

Table of contents Mysql master-slave synchronizat...

Implementation example of Vue+Element+Springboot image upload

Recently, I happened to be in touch with the vue+...

What are the usages of limit in MySQL (recommended)

SELECT * FROM table name limit m,n; SELECT * FROM...