Reputation: 15036
I have a body background that scales the entire width of the page.
Currently, it's set to background-size: 100% 50px;
The 100% works great for big screens: the background spans the width of the page as intended. I'm looking for something that applies to smaller screens(and mobiles!) aswell.
Upvotes: 0
Views: 1105
Reputation: 802
Move the code to html
html {
background: url(image.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Upvotes: 1