Implementation code of color linear gradient color in css3

不言
Release: 2018-08-20 11:48:05
Original
2175 people have browsed it

The content of this article is about the implementation code of color linear gradient color in CSS3. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

css3 Gradient is divided into linear gradient (linear) and radial gradient (radial). Since different rendering engines have different syntax for implementing gradients, here we only analyze its usage based on the W3C standard syntax of linear gradients. You can refer to relevant information for the rest. The syntax has been supported by browsers such as IE10, Firefox19.0, Chrome26.0 and Opera12.1.

Linear gradient syntax:

linear-gradient(to bottom,#FFF,#999)
Copy after login

Parameters: The first parameter specifies the gradient direction, which can be expressed in angle or English:
Implementation code of color linear gradient color in css3

The second and the third parameter, indicating the starting point and end point of the color, which can have multiple color values

background-image:linear-gradient(to left, red, orange,yellow,green,blue,indigo,violet);
Copy after login

Instance code:

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title>Gradient</title>
 <style type="text/css">
 p {
   width: 400px;  
   height: 150px;  
   line-height: 150px;  
   text-align:center;  
   color: #000;  
   font-size:24px;  
   background-image:linear-gradient(to top left,yellow,blue);
   }
 </style>
 </head>
  <body>  <p>右下角向左上角的线性渐变背景</p>
  </body>
  </html>
Copy after login

The effect is as follows:

Implementation code of color linear gradient color in css3

Related recommendations:

[CSS3]-Color RGBA and gradient color_html/css_WEB-ITnose

CSS3 Color linear gradient practice_html/css_WEB-ITnose

The above is the detailed content of Implementation code of color linear gradient color in css3. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!