css-gradient-color-stop
HTML
<body>
<div class="box gradient"></div>
</body>
CSS
.box {
width: 100%;
height: 200px;
}
.gradient {
background: linear-gradient(#ff5004, #fff 40%, #09a201);
}
<body>
<div class="box gradient"></div>
</body>
.box {
width: 100%;
height: 200px;
}
.gradient {
background: linear-gradient(#ff5004, #fff 40%, #09a201);
}