search
HomeWeb Front-endHTML TutorialAbout css3 background gradient

Regarding the gradient of CSS3, currently the major browsers do not have good support, so we need to add the major browser prefixes when we use it.

-moz-: Browser using Mozilla core (Firefox browser)

-webkit-: Browsers using Webkit core (Chrome, Safari browsers)

-o-: Browser using Opera core (Opera browser)

I won’t introduce too much about IE here, and IE is not considered for the gradient of the background color in this article

One. linear-gradient

1.Syntax: -moz-linear-gradient(/,,……)

Parameters: The first parameter is the direction of the linear gradient

  top: from top to bottom;

  left: from left to right;

  right: from right to left;

  bottom: from bottom to top;

  It can also be combined in pairs, for example, from top left: left top, from top right: right top, etc., I won’t introduce too much here;

  Angle represents an angle (I have always thought that a plane rectangular coordinate system involving angles is intuitive enough).

 The second parameter and the third parameter are the colors of the starting point and the end point respectively. More parameters can be inserted between them to represent the gradient of multiple colors. The color supports hexadecimal numerical representation, or rgb can be used. (a) Numerical value

Example: background:-moz-linear-gradient(top,#000,#fff);

 Note: Represents the gradient from #000 to #fff

  Background:-moz-linear-gradient(45deg,#000 50%,#555 50%,#555);

 Note: means 0-50% is #000, 50%-100% is #555

2.Grammar: -webkit-linear-gradient(/,,...) [New Grammar Writing Rules]

   -webkit-gradient(,/,/,,……) 【Old Grammar Writing Rules】

  The new grammar writing rules are the same as others, so I won’t introduce them too much here. Here are the old grammar rules:

Parameter: The first parameter represents the gradient type, which can be linear (linear) or radial (radial);

 The second parameter and the third parameter represent the starting point and end point of the gradient, which can be coordinates or key values;

 The fourth and fifth parameters represent the color of the starting point and the end point respectively. More parameters can be inserted between them to represent the gradient of multiple colors. The color supports hexadecimal numerical representation, or rgb( a) numerical value.

 Example: background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#000));

Note: Represents the gradient from top to bottom, from #fff to #000

 Background:-webkit-gradient(linear,0 0,100% 100%,color-stop(.5,rgb(255,255,255)),color-stop(.5,rgba(0,0,0,.2)));

Note: It means that from the upper left to the lower right, 0-50% is white, and 50%-100% is black with a transparency of 0.2

3.Syntax: -o-linear-gradient(/,,…)

Example: background:-moz-linear-gradient(top,#000,#fff);

 Note: Represents the gradient from #000 to #fff

Two. Radial gradient (radial-gradient)

Syntax: -moz-radial-gradient(/,/,,…);

 -webkit-radial-gradient(/,/,,…);

Oprea browser’s support for radial gradients is not very good yet, so I won’t introduce it here. In addition to the actual position, direction and color seen in linear gradients, radial gradients allow you to specify the shape of the gradient: circle and ellipse and the size: closest-side, closest -corner), farthest-side, farthest-corner, contain, cover. There is little difference between the settings of these sizes, which is a bit confusing.

Example: background:radial-gradient(#fff, #000);

 background: -webkit-radial-gradient(#fff , #000);

Note: Represents a circular gradient from white to black

 Background: -moz-radial-gradient(80% 20%, closest-corner, #fff, #000);

 Background: -webkit-radial-gradient(80% 20%, closest-corner, #fff, #000);

Note: It means there is a gradient from white circle to black at 80% 20% position

2.css repeating gradient

Syntax: -moz-repeating-linear-gradient(/,,……);

  -webkit-repeating-linear-gradient(/,,…);

  -o-repeating-linear-gradient(/,,…);

 -moz-radial-gradient(/,/,,…);

 -webkit-radial-gradient(/,/,,…);

Example: background: -moz-repeating-radial-gradient(#fff, #000 5px, #000 5px, #000 10px);

 background: -webkit-repeating-radial-gradient(#fff, #000 5px, #000 5px, #fff 10px);

Note: It represents a circle of black and white circles (don’t be too dizzy)

This article is excerpted from Da Mo’s blog http://www.w3cplus.com/content/css3-gradient

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

HTML and Code: A Closer Look at the TerminologyHTML and Code: A Closer Look at the TerminologyApr 10, 2025 am 09:28 AM

HTMLisaspecifictypeofcodefocusedonstructuringwebcontent,while"code"broadlyincludeslanguageslikeJavaScriptandPythonforfunctionality.1)HTMLdefineswebpagestructureusingtags.2)"Code"encompassesawiderrangeoflanguagesforlogicandinteract

HTML, CSS, and JavaScript: Essential Tools for Web DevelopersHTML, CSS, and JavaScript: Essential Tools for Web DevelopersApr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

The Roles of HTML, CSS, and JavaScript: Core ResponsibilitiesThe Roles of HTML, CSS, and JavaScript: Core ResponsibilitiesApr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.