css height and width of background image code example
Example: 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;
}