CSS Radial Gradients

โ€” 4 minute read

permalink

Yesterday we had a look at CSS Linear Gradiants. And as promised, today we'll look into radial gradients. These gradients show from a round perspective.

Types of CSS Gradients permalink

As a reminder, there are two types of gradients we can leverage in CSS. These types are:

  • Linear Gradient: From one side to the other side
  • Radial Gradient: Round gradient

It's best to view them in action and see what they can do.

View how to use a Linear Gradient in CSS

CSS Radial Gradient permalink

The radial gradient is defined by its center and moves from there.

In the most basic example, we can use it like this:

.basic-radial {
background-image: radial-gradient(red, yellow);
}

This will make a gradient from red (inside) colors to a yellow (outside) color spectrum.

Radial Gradient with Multiple Colors permalink

We can also define multiple colors for the radial gradient, much like the linear gradient. Let's look at an example with four colors:

.multi-radial {
background-image: radial-gradient(red, yellow, green, blue);
}

We can also define the gradient position for the colors:

.position-radial {
background-image: radial-gradient(red 10%, yellow 50%, green 90%);
}

Transparent Radial Gradients permalink

We can even make the gradient transparent, which can be used for some cool overlay effects. To create a transparent gradient, we have to use the RGBA color spectrum:

.transparent-radial {
background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

Radial Gradient Shape permalink

By default, the radial gradient will use an ellipse shape. We can change it to a circle too. But there are only these two options.

Shapes of radial gradients

  • circle
  • ellipse

Example:

.shape-gradient {
background-image: radial-gradient(circle, red 10%, yellow 20%);
}

Repeat Radial Gradient permalink

And for who knows what reason, we can repeat the gradient as well with this code:

.repeat-radial {
background-image: repeating-radial-gradient(red 10%, yellow 20%);
}

View all these code examples in this Codepen permalink

See the Pen CSS Radial Gradients by Chris Bongers (@rebelchris) on CodePen.

Browser Support permalink

CSS Gradients are very well supported. Just Opera Mini is not working, and not all browsers support the full set of options.

CSS Gradients support

Thank you for reading, and let's connect! permalink

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter