css-gradient-color-stop

by VIvek Vaishnav

HTML

<body>
  <div class="box gradient"></div>
</body>

CSS

.box {
   width: 100%;
   height: 200px;
 }
 
 .gradient {
   background: linear-gradient(#ff5004, #fff 40%, #09a201);
 }