Skip to content Skip to sidebar Skip to footer

Html Blank I Want To Erase

I have a new problem that bugs me ... I am making a web page that I want to be fixed with no scrolling and most important I want my main Div to fill aaaaaaaaall my available space.

Solution 1:

You didn't set the body's style:

body {margin: 0px; padding: 0px; height: 100%;}

Solution 2:

Your body margin isn't set to 0px, just that of html.

Solution 3:

Set the margin to 0 on the body tag.

body {margin:0;}

Solution 4:

In addition - rather than adding:

padding: 0; margin: 0;

to every selector do it globally at the top of your CSS file:

* { padding: 0; margin: 0; }

Post a Comment for "Html Blank I Want To Erase"