Answers for "gradient background color in css"

CSS
8

css horizontal gradient background color

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

css gradient

#grad {
  background-image: linear-gradient(to bottom right, red, yellow);
}
Posted by: Guest on June-23-2021

Code answers related to "gradient background color in css"

Browse Popular Code Answers by Language