Gradient Background

CSS gradients can be used as backgrounds.

Preview

Code

<style>
.box{
width:200px;
height:120px;
background:linear-gradient(45deg,#2563eb,#22c55e);
}
</style>

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

More CSS Backgrounds Examples (8)