CSS Background Gradient Generator

A CSS background gradient allows you to smoothly transition background colors between two or more specified colors in an element.

Preview

 

Properties

Code

.element {
  background: #3f5efb;
  background: linear-gradient(180deg, #3f5efb 0%, #fc466b 100%);
}