linear-gradient-top-bottom

by VIvek Vaishnav

HTML

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

CSS

.box {
   width: 100%;
   height: 100px;
 }
 
 .gradient {
   background: linear-gradient(red, pink);
 }