Horje
linear gradient Code Example
gradient image css
#show_bg_2 {
 
background-image:
  /*two color gradient over an image*/
linear-gradient(to bottom, rgba(245, 246, 252, 0.52), 
rgba(117, 19, 93, 0.73)),url('images/background.jpg');
 
width: 80%;
height: 400px;
background-size: cover;
}
css horizontal linear gradient
background: linear-gradient(to left, red, blue);
css linear gradient
#grad {
  background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);

}
html css background linear-gradient
#background {
  background-image: linear-gradient(to left, #4B2C4C , #151F28);
}
how to make a linear gradient in css
/* Add the class name insted of class */
.class {
  background: linear-gradient(to top, #000000, #fffffff);
}
linear gradient
background: linear-gradient(direction, colour-stop1, colour-stop2, ...);




Css

Related
material css navbar Code Example material css navbar Code Example
split large files Code Example split large files Code Example
css widows Code Example css widows Code Example
centering with flexbox Code Example centering with flexbox Code Example
CSS transform properties are used to change the shape and position of the selected objects. The transform-origin property specifies the location of the element's transformation origin. By def CSS transform properties are used to change the shape and position of the selected objects. The transform-origin property specifies the location of the element's transformation origin. By def

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