Answers for "linear gradient from left to right"

CSS
3

how to make a linear gradient in css

/* Add the class name insted of class */
.class {
  background: linear-gradient(to top, #000000, #fffffff);
}
Posted by: Guest on December-25-2020
7

linear-gradient

background: linear-gradient(to left, #333, #333 50%, #eee 100%);
Posted by: Guest on April-01-2020

Code answers related to "linear gradient from left to right"

Browse Popular Code Answers by Language