I want to diagonally split the background into two colors where one is white color. And I want the other one to be a gradient that goes from red to blue.
Here we have red split with white background (source):
body {
height:100vh;
width:100vw;
background:linear-gradient(160deg, red, red 60%, white 60%, white);
}
Is it possible to make the red part a gradient, where it goes from red to blue, something like:
So basically, a gradient within a gradient.

