Here are the screenshots of my mobile browser and my desktop browser.
My webpage has some overflow in x axis which I hid using overflow-x: hidden;
Is there any way I can make my webpage render in mobile browser, the way it renders in desktop browser i.e. full width and overflow hidden.
CSS:
body{
padding:0;
margin:0;
background-image:url(../images/PaperBG/goovepaper.png);
overflow-x: hidden;
}
Thanks.