DEV Community

Cover image for Border with gradient and radius
Temani Afif
Temani Afif

Posted on • Edited on

Border with gradient and radius

Find out more CSS tricks at css-tip.com

We all know the property border-image that allows us to add any kind of images (including gradients) as borders.

.box {
  border: 10px solid;
  border-image: linear-gradient(45deg,red,blue) 10;
}
Enter fullscreen mode Exit fullscreen mode

Gradient border

Unfortunately, border-radius isn't supported with border-image and it's painful to find tricks to obtain rounded borders having a gradient.

Here is a trick that will produce such a result. No complex code, No SVG, or multiple elements are required! only two lines of CSS code using the mask property.

.box {
  border-radius: 50px; /*1*/
  border: 10px solid transparent; /*2*/
  background: linear-gradient(45deg,red,blue) border-box; /*3*/
  mask: /*4*/
    linear-gradient(#000 0 0) padding-box, 
    linear-gradient(#000 0 0);
  mask-composite: exclude; /*5*/
}
Enter fullscreen mode Exit fullscreen mode

Gradient border with radius

Explanation

(1)(2): Those lines are trivial.
(3): We apply a gradient as background and we make its origin the border box (by default it's the padding box).
(4): Using the mask property, we apply two opaque layers. The bottom one will cover the whole element and the top one will cover only the padding box (so it will not cover the border area)
(5): We exclude the top layer from the bottom one so that only the border area will be shown!

That's it!

Now you can adjust the border, gradient, and radius as you want. The only drawback is that this will mask the content so we can move the code to a pseudo-element instead

.box {
  position: relative;
}
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px; 
  padding: 10px; 
  background:linear-gradient(45deg,red,blue); 
  mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  mask-composite: exclude; 
}
Enter fullscreen mode Exit fullscreen mode

Gradient border radius

I replaced the border with padding to make the code shorter but the logic remains the same: we exclude the content area from the padding area so only padding will remain visible


buy me a coffee

OR

Become a patron

Oldest comments (34)

Collapse
 
alvaromontoro profile image
Alvaro Montoro • Edited

Nice article, and nice seeing you here :)

Collapse
 
afif profile image
Temani Afif

thanks :) will try to bring some tricks and some hacks to dev.to ;)

Collapse
 
ruannawrites profile image
Ruanna

So pretty!

Collapse
 
heyprotagonist profile image
Anguram Shanmugam

is there website (like (JavaScript.info) ) for CSS ❓❓❓

Collapse
 
afif profile image
Temani Afif

Maybe the MDN website: developer.mozilla.org/en-US/docs/W...

Collapse
 
heymich profile image
Michael Hungbo

You might just love css-tricks.com 😉

Collapse
 
tudigitalmrkter profile image
Nancy Gio

Awesome!!

Collapse
 
cacingsuper profile image
Lamtoro

creating shadow gradient use this thing

Collapse
 
afif profile image
Temani Afif

Yes, quite easy by adding a blur filter to the pseudo element ;)

Collapse
 
feco2019 profile image
Dimitris Chitas

Nice

Collapse
 
facundocorradini profile image
Facundo Corradini

Great article, so good to see you here!

Collapse
 
afif profile image
Temani Afif

thanks :)

Collapse
 
wozwebs profile image
Warren D

Thanks for this but doesn't work in Safari, only Chrome and Firefox

Collapse
 
dewtwo profile image
Dev Two

Where can we find pre-made gradients?

Collapse
 
afif profile image
Temani Afif

what kind of pre-made gradients?

Collapse
 
dewtwo profile image
Dev Two

I mean gradient which made by someone to use. Ready to use gradients.

After some digging around the internet, I found this

eggradients.com/

Collapse
 
jardelbordignon profile image
Jardel Bordignon

Nice! thanks.