Answers for "css linear gradient background with a straight line"

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
-2

linear gradient css

background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/cover.jpg");
Posted by: Guest on August-20-2021

Code answers related to "css linear gradient background with a straight line"

Browse Popular Code Answers by Language