style background linear gradient code example
Example 1: transition background gradient
In CSS, you can't transition a background gradient. It jumps from one gradient to the other immediately, with no smooth transition between the two. He documents a clever tactic of positioning a pseudo element covering the element with a different background and transitioning the opacity of that pseudo element.
Example 2: linear gradient border
div-border-and-content-background {
border-top: double 5px transparent;
background-image: linear-gradient(white,white), linear-gradient(to right, grey, black);
background-clip: padding-box, border-box;
background-origin: border-box;
}
Example 3: html css background linear-gradient
background: linear-gradient(#333, #333 50%, #eee 100%);
\\code for a basic gradient background
#grad {
background-image: linear-gradient(red, yellow);
}
Example 4: html css background linear-gradient
#background {
background-image: linear-gradient(to left, #4B2C4C , #151F28);
}