Answers for "gradient css left to right"

CSS
2

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
8

css horizontal gradient background color

.foo {
	background-image: linear-gradient(red, blue);
}
Posted by: Guest on March-06-2020
0

using to in linear gradient css

.gradient {
  background-image:
    linear-gradient(
      to top right,
      #ff8a00, #e52e71
    );
}
Posted by: Guest on June-21-2021

Code answers related to "gradient css left to right"

Browse Popular Code Answers by Language