Alpdog14
Alpdog14

Reputation: 129

HTML webpage full screen

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

Answers (2)

Brad Christie
Brad Christie

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

animuson
animuson

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

Related Questions