Ive been searching for an answer for this but could not find it. My website is using an background image in the html like this
html { background: url(img/bg.jpg) center top fixed no-repeat;
background-size:center 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow-y: hidden;
It works great in all the browsers ive checked except for the android webbrowser, nor the google chrome browser on the phone. Then It displays either 4 images or just one image at the top.
Anyone met this problem before and found a solution?