Horje
html css background linear-gradient Code Example
linear gradient css background image
background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531);
html css background linear-gradient
#background {
  background-image: linear-gradient(to left, #4B2C4C , #151F28);
}
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);
}  
linear gradient in CSS
The general syntax of linear-gradient is-
background: linear-gradient(gradient direction, color1 , color2 , color3, .....);

Forexample-
background: linear-gradient(46deg,green,blue,yellow,pink);

NOTE: (common mistake) we forget to write the semi-colon (;) 
linear gradient css
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/cover.jpg");




Css

Related
css center table on page Code Example css center table on page Code Example
css change image width Code Example css change image width Code Example
ionic mobile always dark theme in web Code Example ionic mobile always dark theme in web Code Example
import tailwind Code Example import tailwind Code Example
vh and vw Code Example vh and vw Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9