DEV Community

Cover image for Border with gradient and radius

Border with gradient and radius

Temani Afif on February 12, 2021

We all know the property border-image that allows us to add any kind of images (including gradients) as borders. .box { border: 10px solid; ...
Collapse
 
natedolesh profile image
Nate Dolesh

Thanks, it could work in some situations, although two issues:

  1. I had to add z-index: -1; to the ::before pseudo element to make the content clickable/selectable
  2. After doing the above, the border won't be visible if any parent element has a background
Collapse
 
afif profile image
Temani Afif

if you are adding z-index:-1 to the pseudo element you need to add z-index:0 to the main element to avoid the issue OR don't use z-index at all and add pointer-events:none to the pseudo element

Collapse
 
natedolesh profile image
Nate Dolesh

Thank you! That does fix it!

Collapse
 
noriste profile image
Stefano Magni

Thank you so much! Even if I ended up not using your solution, you helped me find out the best way to do this dev.to/noriste/production-grade-gr... 😊

Collapse
 
eshimischi profile image
eshimischi

But what if i need to make a background colour as well? for instance, gradient as well

Collapse
 
afif profile image
Temani Afif

in this case, you don't need mask or pseudo element simply do

.box {
  border:8px solid #0000;
  border-radius:10px;
  background:
    linear-gradient(red,blue) padding-box,
    linear-gradient(green,pink) border-box;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
madsstoumann profile image
Mads Stoumann

This is SO much cleaner than all the "gradient border"-articles you find around the web — love the 4-char alpha-hex. Thank You!

Collapse
 
eshimischi profile image
eshimischi • Edited

Well i tried what you said, but it looks very much differently from what i want to archive and it's so sad.

PS: i decided simply to export the background with border as a background (svg), the simplest way

Collapse
 
eshimischi profile image
eshimischi • Edited

thanks for the tip, will try.. my designer made this, at first i tried it with a border-image-source but it doesn't work with border-radius, of course

Template

Collapse
 
sodjanathan profile image
nat_souljah

Thus just saved me more digging, thanks muchacho

Collapse
 
wozwebs profile image
Warren D

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

Collapse
 
jardelbordignon profile image
Jardel Bordignon

Nice! thanks.

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
 
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
 
facundocorradini profile image
Facundo Corradini

Great article, so good to see you here!

Collapse
 
afif profile image
Temani Afif

thanks :)

Collapse
 
feco2019 profile image
Dimitris Chitas

Nice

Collapse
 
tudigitalmrkter profile image
Nancy Gio

Awesome!!

Collapse
 
heyprotagonist profile image
Anguram Shanmugam

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

Collapse
 
heymich profile image
Michael Hungbo

You might just love css-tricks.com 😉

Collapse
 
afif profile image
Temani Afif

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

Collapse
 
samirkaushikbwi profile image
SamirKaushikBWI

I need to make a div with glassy background and rounded borders with gradient. Is there some way I could do that without using any background-padding technique.

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
 
loreta_korf_7f422bfb159c6 profile image
Loreta Korf

Thank you, it's work!

Collapse
 
salluthdev profile image
Faisal L

Jenius! Thanks bro, your explanation has solved my problem.

Collapse
 
thanhtuan profile image
Thanh Tuan Dinh

Thanks so much bro <3