html - Body background is having image 1374x1074 but on zooming --, white background is coming -
here http://singh.mobi/nonni/, have body background image of 1374x1074 when zoom in, white background coming right side.
these days, add background-size css, that's pretty supported now:
body {     background: url("images/background.png") no-repeat scroll 0 0 #fff;     background-color: #e6e6e6;     background-size: cover; } 
Comments
Post a Comment