css - Overflow:hidden not working on mobile browser -
im using overflow:hidden hide unglam div in webpage, works in web browser not in mobile browser. can help?
body { margin: auto; display:block; overflow-x:hidden; overflow-y:hidden; height:800px; }
try adding following line in html
<meta name="viewport" content="width=device-width, height=device-height"> and test on phone. maybe should help.
Comments
Post a Comment