在新选项卡中打开链接
  1. CSS Gradient — Generator, Maker, and Background

    扩展名.css
    互联网媒体类型text/css
    统一类型标识public.css
    层叠样式表是一种用来为结构化文档添加样式的计算机语言,由W3C定义和维护。CSS3现在已被大部分现代浏览器支持,而下一版的CSS4仍 …
    层叠样式表是一种用来为结构化文档添加样式的计算机语言,由W3C定义和维护。CSS3现在已被大部分现代浏览器支持,而下一版的CSS4仍在开发中。 CSS不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。CSS 能够对网页中元素位置的排版进行像素级精确控制,支持几乎所有的字体字号样式,拥有对网页对象和模型样式编辑的能力。 CSS不能单独使用,必须与HTML或XML一起协同工作,为HTML或XML起装饰作用。本文主要介绍用于装饰HTML网页的CSS技术。其中HTML负责确定网页中有哪些内容,CSS确定以何种外观展现这些元素。CSS可以用于设定页面布局、设定页面元素样式、设定适用于所有网页的全局样式。CSS可以零散地直接添加…
    See More
     
  1. 1

    CSS gradients allow you to create smooth transitions between two or more specified colors. There are three main types of gradients in CSS: linear gradients, radial gradients, and conic gradients1.

    Linear Gradients

    Linear gradients transition colors along a straight line. You can define at least two color stops and set a direction or angle for the gradient.

    Syntax

    background-image: linear-gradient(direction, color-stop1, color-stop2, ...);

    Examples

    • Top to Bottom (default)

    #grad {
    background-image: linear-gradient(red, yellow);
    }
    • Left to Right

    #grad {
    background-image: linear-gradient(to right, red, yellow);
    }
    • Diagonal (Top Left to Bottom Right)

    #grad {
    background-image: linear-gradient(to bottom right, red, yellow);
    }
    • Using Angles

    #grad {
    background-image: linear-gradient(180deg, red, yellow);
    }
    • Multiple Color Stops

    #grad {
    background-image: linear-gradient(red, yellow, green);
    }
    • Rainbow Background

    #grad {
    background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
    }
    这是否有帮助?

    查看以下来源的结果:

  2. CSS Gradients - W3Schools

  3. 使用 CSS 渐变 - CSS:层叠样式表 | MDN - MDN Web Docs

  4. Using CSS gradients - CSS: Cascading Style Sheets | MDN - MDN …

  5. ColorSpace - CSS Gradient Color Generator

  6. CSS3 渐变(Gradients) - 菜鸟教程

    background-image: linear-gradient (angle, color-stop1, color-stop2); 角度是指水平线和渐变线之间的角度,逆时针方向计算。 换句话说,0deg 将创建一个从下到上的渐变,90deg 将创建一个从左到右的渐变。

  7. 其他用户还问了以下问题
  8. CSS linear-gradient() Function - W3Schools

  9. Gradient Generator - CSS gradients made easy - ColorGradient

  10. css 使用 background: linear-gradient 实现渐变色 - CSDN博客

  11. CSS Gradient Generator - Make and generate beautiful …

    Use this online tool to make linear, radial, conic or text gradients with different colors and directions. Learn more about CSS gradients, their types, properties and browser compatibility.