Answers for "to bottom css gradient"

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
0

css gradient bottom page

.colorhint-gradient {
  background: linear-gradient(to top, black, 20%, cyan);
}
.regular-progression {
  background: linear-gradient(to top, black, cyan);
}
Posted by: Guest on September-01-2021

Browse Popular Code Answers by Language