how do i make a background have a gradient in css code example
Example 1: how to insert gradient in css
body{
background-image: radial-gradient(#EA52F8 5.66%, #0066FF 94.35%);
background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}
Example 2: css gradient
.yourElementClass{
background: linear-gradient(to top, #fff000 0%, #000fff 100%);
}
Example 3: css gradient
background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);