css background full size code example
Example 1: how to cover full image in css
body {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
Example 2: css background full width
body {
background: url(img/bg-image.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Example 3: css cover
background-size: cover;
Example 4: background: url("image/banner-image-1.jpg") no-repeat center top; background-size:cover;
-moz-backface-visibility: hidden;