[Vuejs]-Linear gradient not fixed when screen size changes

0👍

Maybe you could try putting position:relative;
on the .linear-background selector, like this:

.linear-background{
background: linear-gradient(-5deg, #DFDFDD 10%, #3D4A6D 11%);
height: 200px;
width: 200px;
}

0👍

I didn’t know clip paths
This is really very usefull
Thanks @mxritz and @AHaworth

https://bennettfeely.com/clippy/

Leave a comment