background image with color css code example

Example 1: add background image and color css

background:linear-gradient( rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%),url("logo/header-background.png");

Example 2: how to add background in css

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}

Example 3: make image background of div

background-image: url("photographer.jpg");

Example 4: background url with color css

background: linear-gradient(0deg, rgba(2,173,231,0.5), rgba(2,173,231,0.5)), url(images/mba-grid-5px-bg.png) repeat;

Example 5: css background image

body {
 background-image: url("paper.gif");

}

Tags:

Misc Example