Answers for "stction top and bottom gradient color css"

CSS
3

linear-gradient(top to bottom)

/* A gradient going from the top to bottom
   starting red and finishing orange */

.class {
    background: linear-gradient(to bottom, #f32b60, #ff8f1f);
}
Posted by: Guest on December-19-2020

Code answers related to "stction top and bottom gradient color css"

Browse Popular Code Answers by Language