/* A gradient tilted 45 degrees,
starting blue and finishing red */
linear-gradient(45deg, blue, red);
/* A gradient going from the bottom right to the top left corner,
starting blue and finishing red */
linear-gradient(to left top, blue, red);
/* Color stop: A gradient going from the bottom to top,
starting blue, turning green at 40% of its length,
and finishing red */
linear-gradient(0deg, blue, green 40%, red);
/* Color hint: A gradient going from the left to right,
starting red, getting to the midpoint color
10% of the way across the length of the gradient,
taking the rest of the 90% of the length to change to blue */
linear-gradient(.25turn, red, 10%, blue);
/* Multi-position color stop: A gradient tilted 45 degrees,
with a red bottom-left half and a blue top-right half,
with a hard line where the gradient changes from red to blue */
linear-gradient(45deg, red 0 50%, blue 50% 100%);
Code Example |
---|
Css :: add shadow to background image css |
Css :: cool hover effects css |
Css :: Capitalize the first letter of string using CSS |
Css :: css gradient 3 colors |
Css :: curve bottom of square css |
Css :: how to move text down css |
Css :: transparent button css |
Css :: Timeout for a fetch |
Css :: border buttom color |
Css :: vertical padding css |
Css :: add quotes in quote css |
Css :: input type file without button |
Css :: color code css |
Css :: button type submit css selector |
Css :: importing scss into vue component |
Css :: placeholder color |
Css :: import tailwind |
Css :: css keyframes |
Css :: css button click color |
Css :: css opacity |
Css :: css border-left |
Css :: different measurements in css |
Css :: width fit content |
Css :: how to increase font height css |
Css :: how to add color in css |
Css :: rgb blue color code |
Css :: font-variant |
Css :: overflow-x hidden not working |
Css :: css make text closer together |
Css :: using inline styling in React |