background img cover code example
Example 1: css background image full screen responsive
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Example 2: how to cover full image in css
body {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
Example 3: how to fit background image in html
METHOD - 1
html {
background: url(images/yourImage.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
METHOD - 2
IMP: To make sure that the image covers the whole screen,
you must apply **height: 100%** to both <html> and <body>:
body, html {
height: 100%;
}
Example 4: how to scale a bg image acc to size of div
background-size: cover;
background-size: contain;
Example 5: background image height and width
.class{
background: url("../images/icons/map.png") no-repeat center center/50px 50px fixed;
}
Example 6: background cover css
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;