I have this div:
<div class="sh-continer-fluid bg-blue"><div>
I want to style 25% of this div to blue color and 75% of div to white color. so, I am doing it using CSS:
.bg-blue {
background-color: #5366ea;
background: linear-gradient(90deg, #FFC0CB 25%, #00FFFF 75%);
}
But it's showing me floating gradient color. I need solid gradient color. Any idea?
Not this:
I mean this: