惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
爱范儿
爱范儿
小众软件
小众软件
MyScale Blog
MyScale Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
C
Check Point Blog
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
CSS Gradients: A Complete Guide to Linear, Radial, and Co...
Snappy Tools · 2026-05-02 · via DEV Community

CSS gradients have come a long way from the hacks we used to use (background-image: url(gradient.png)). Modern gradients are vector, resolution-independent, and more powerful than most developers realise. Here's everything you need to know.

Linear gradients

The most common type. A linear gradient blends between colours along a straight line.

/* Basic: top to bottom */
background: linear-gradient(red, blue);

/* Specific angle */
background: linear-gradient(45deg, red, blue);

/* Named directions */
background: linear-gradient(to right, red, blue);
background: linear-gradient(to bottom right, red, blue);

/* Multiple colour stops */
background: linear-gradient(to right, red, yellow 40%, green);

Enter fullscreen mode Exit fullscreen mode

The direction can be:

  • An angle (45deg, 180deg) — 0deg is bottom-to-top, 90deg is left-to-right
  • A keyword direction (to right, to bottom, to top left)

Colour stops and positions

By default, colours are evenly distributed. You can control exact positions:

/* Stripe: sharp transition at 50% */
background: linear-gradient(
  to right,
  red 0%,
  red 50%,
  blue 50%,
  blue 100%
);

/* Or more concisely */
background: linear-gradient(to right, red 50%, blue 50%);

Enter fullscreen mode Exit fullscreen mode

This is how you create sharp lines instead of smooth blends — useful for striped patterns and progress bars.

Radial gradients

Radial gradients radiate outward from a centre point.

/* Basic ellipse from centre */
background: radial-gradient(circle, yellow, orange, red);

/* Specific shape and size */
background: radial-gradient(circle at 30% 70%, yellow, transparent);

/* Ellipse (default) */
background: radial-gradient(ellipse 100% 50% at center, blue, white);

Enter fullscreen mode Exit fullscreen mode

The at keyword controls the centre point. You can position it anywhere:

  • Keywords: at center, at top left, at 80% 20%
  • Lengths: at 100px 200px

The size can be:

  • Keywords: closest-side, farthest-side, closest-corner, farthest-corner (default)
  • Explicit: 200px 100px

Conic gradients

Conic gradients are the newest type — they rotate around a centre point like a colour wheel.

/* Basic pie chart */
background: conic-gradient(red 0deg, yellow 90deg, green 180deg, blue 270deg);

/* As percentages */
background: conic-gradient(
  #ff0000 0% 25%,
  #ff8800 25% 50%,
  #00aa00 50% 75%,
  #0000ff 75% 100%
);

/* Colour wheel */
background: conic-gradient(
  hsl(0, 100%, 50%),
  hsl(90, 100%, 50%),
  hsl(180, 100%, 50%),
  hsl(270, 100%, 50%),
  hsl(360, 100%, 50%)
);

/* Start angle */
background: conic-gradient(from 45deg, red, blue, green, red);

Enter fullscreen mode Exit fullscreen mode

Practical uses: pie charts, clock faces, loading indicators, colour wheel pickers.

Repeating gradients

All three types have a repeating variant:

/* Diagonal stripes */
background: repeating-linear-gradient(
  45deg,
  #000 0px,
  #000 10px,
  #fff 10px,
  #fff 20px
);

/* Concentric rings */
background: repeating-radial-gradient(
  circle at center,
  transparent 0,
  transparent 20px,
  rgba(0,0,0,0.1) 20px,
  rgba(0,0,0,0.1) 21px
);

Enter fullscreen mode Exit fullscreen mode

Layering gradients

You can stack multiple gradients using commas — they layer like backgrounds, with the first one on top:

background: 
  linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  linear-gradient(to right, #ff6b6b, #4ecdc4);

Enter fullscreen mode Exit fullscreen mode

This is useful for adding a darkening overlay to a bright gradient, or creating complex multi-directional blends.

Gradients on text

Use background-clip: text to apply a gradient to text:

.gradient-text {
  background: linear-gradient(to right, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

Enter fullscreen mode Exit fullscreen mode

The -webkit- prefix is still needed for Safari compatibility.

Accessibility: contrast on gradients

When placing text over a gradient background, the contrast ratio varies across the gradient. Always check the worst-case point — the lightest part of the background against your text colour (or darkest if your text is light). A tool like the Color Contrast Checker can test specific colour pairs — sample the lightest gradient point and check against your text colour.

Building gradients visually

Rather than writing gradient code by hand, you can prototype visually and then copy the CSS. The CSS Gradient Generator lets you adjust colours, stops, angle, and gradient type with sliders, then copies the ready-to-paste CSS. Useful for experimenting with colour combinations before committing to code.

Performance considerations

CSS gradients are rendered by the GPU and are extremely performant — far better than background images. However, complex gradients with many colour stops can affect repaint performance on low-end devices. As a rule: use the fewest colour stops needed for the intended effect, and avoid animating background properties — animate opacity or transform instead.

Browser support

Linear and radial gradients have supported without prefixes since IE10 (2012) and are universally available. Conic gradients have been in all major browsers since Chrome 69 (2018), Firefox 83, and Safari 12.1 — safe for all modern browsers but worth checking if you support IE11 or very old mobile browsers.


Gradients are one of those CSS features where understanding the underlying geometry pays off: once you know how angles, stops, and shapes work, complex patterns become straightforward. The more interesting visual effects — stripes, crosshatches, starburst backgrounds — are just variations on the same rules applied repeatedly.