Answers for "css gradient with multiple stops"

4

linear gradient css background image

background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531);
Posted by: Guest on May-03-2020
1

css linear gradient

#gradient {
  background-image: linear-gradient(180deg, black, red);
}
/* can be applied in many places, as your <body> background or a <div> etc */
Posted by: Guest on September-17-2020

Code answers related to "css gradient with multiple stops"

Browse Popular Code Answers by Language