css-gradient-top-left
HTML
<body>
<div class="box gradient"></div>
</body>
CSS
.box {
width: 100%;
height: 200px;
}
.gradient {
background: linear-gradient(to top left, #1c5ba4, #dfe8f2);
}
<body>
<div class="box gradient"></div>
</body>
.box {
width: 100%;
height: 200px;
}
.gradient {
background: linear-gradient(to top left, #1c5ba4, #dfe8f2);
}