how to add color 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: linear gradient css
.class {
background: linear-gradient(100deg, rgba(63, 63, 63, 0.8) 0%, rgba(255, 255, 255, 0) 25%);
}
.class {
background: linear-gradient(to top, #f32b60, #ff8f1f);
}
Example 3: how to insert gradient in css
body{
background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}