One thing I don’t need this year is people coming into my life to somehow benefit off my so-called influencer fame/benefits. It’s so lame and also very cringe like what are you gonna get out of it really😭😭😭
@Thyholywaater I dont think anyone wants surgery for themselves tbh. I believe that if we never had means of comparison or societal beauty standards, no one would feel the need to alter their appearances. I don’t think its a natural biological desire
CSS Trick! ⚡️
You can create gradient borders by using transparent borders 👀 No extra elements 🤙
article {
background: // layer them up with different origin!
linear-gradient(var(--bg), var(--bg)) padding-box,
var(--gradient) border-box;
border: 4px solid transparent;
}
The trick is to layer background images using different background-origin ⭐️ Then use a transparent border to define how thick the border is!
padding-box positions a background relative to an element's padding. border-box positions a background relative to the border-box 🔥
The ✨magic✨ part? You get that nested radius for free 😅
Check out the exploded view in the video and have a play with different values in the demo 🎞️
@CodePen link below! 👇