css-gradient-top-left

by VIvek Vaishnav

HTML

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

CSS

.box {
  width: 100%;
  height: 200px;
}

.gradient {
  background: linear-gradient(to top left, #1c5ba4, #dfe8f2);
}