Reputation: 129
I have this webpage and you can see that I have white space around the webpage. I tried to configure the CSS to width and height to 100% but not sure why its not reach the whole screen:
http://luc.edu/loyolamaps/basemap/
Can anyone help with this?
Upvotes: 0
Views: 213
Reputation: 101594
I believe you need
body {
margin: 0;
padding: 0;
}
That will allow the contents to reach the outter-limits of the viewport.
Upvotes: 1
Reputation: 54719
The body element has a margin: 10px
on it by default, just add a margin: 0
to your body's CSS and it should be fine.
Upvotes: 4