Answers for "cs gradient"

CSS
8

css linear gradient

#grad {
  background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);

}
Posted by: Guest on September-01-2020
7

linear-gradient

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

css gradient

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

gradient css

background: repeating-linear-gradient(to right top, rgb(0, 102, 255), rgb(0, 204, 255));
Posted by: Guest on January-16-2021
0

css gradient

background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language