CSS background properties let you set colors, images, gradients, and control how they display.
Background Properties
background-color— solid background colorbackground-image— set an image or gradientbackground-repeat— control tiling:repeat,no-repeat,repeat-x,repeat-ybackground-position— position the image:center,top left,50% 50%background-size— size the image:cover,contain, specific valuesbackground-attachment— scroll behavior:scroll,fixedbackground— shorthand for all properties
Linear Gradients
linear-gradient(to right, #fff, #000) creates a smooth color transition.