Im using overflow:hidden to hide my unglam div in my webpage, it works well in all web browser but not in mobile browser. Anyone can help?
body
{
margin: auto;
display:block;
overflow-x:hidden;
overflow-y:hidden;
height:800px;
}
Im using overflow:hidden to hide my unglam div in my webpage, it works well in all web browser but not in mobile browser. Anyone can help?
body
{
margin: auto;
display:block;
overflow-x:hidden;
overflow-y:hidden;
height:800px;
}
Try adding following line in your html
<meta name="viewport" content="width=device-width, height=device-height">
and test on your phone. Maybe this should help.
Depending on which mobile browser you're using, overflow-x
and overflow-y
may not be supported. Use overflow: hidden
instead to cover all bases and be cross browser compatible.