xxxxxxxxxx
#gradient {
background-image: linear-gradient(180deg, black, red);
}
/* can be applied in many places, as your <body> background or a <div> etc */
xxxxxxxxxx
/* example: */
background: linear-gradient(45deg, rgba(34,164,116,1) 0%, rgba(41,47,143,1) 100%);
/*
45deg = rotation of gradient. prob can be in radians too.
then, it's composed of blocks: "[color] [percent],"
where the percent is where the gradient is.
0% is the start, 100% is the end.
or you could just play around with https://cssgradient.io and understand it yourself.
*/
xxxxxxxxxx
background: linear-gradient(#333, #333 50%, #eee 100%);
\\code for a basic gradient background
#grad {
background-image: linear-gradient(red, yellow);
}
xxxxxxxxxx
#background {
background-image: linear-gradient(to left, #4B2C4C , #151F28);
}
xxxxxxxxxx
/* CSS */
body {
/* Linear Gradient Background */
background: linear-gradient(to bottom, #ffcc00, #ff3300);
}
xxxxxxxxxx
body{
background: linear-gradient(206deg, rgb(255, 166, 0), rgb(229, 87, 158));
}
xxxxxxxxxx
/* 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%);
xxxxxxxxxx
.gradient {
background-image:
linear-gradient(
to top right,
#ff8a00, #e52e71
);
}
xxxxxxxxxx
background: #085078; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #085078, #85d8ce); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #085078, #85d8ce); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */