+ 2
Stretch website width and height to android screen width and height
Is there any HTML/CSS/JS code for this?
3 Answers
+ 5
*
{
padding: 0;
margin: 0;
}
body
{
width: 100%;
height: 100%;
}
+ 5
Padding and margin removes the default padding and margin from everyting so your webpage is truly 100% wide.
0
Does this prevent the user from zooming in and out of the site?