Sunday, March 25, 2012

Get rid of space at top of my web page

To get rid of the space at the top of the web page you should specify 0 margin for the body tag. This can be done two ways.

<html>
    <head>
        <title>
            Annoying space at top of web page
        </title>
    </head>
    <!-- you can create a style tag in the header -->
    <style type="text/css">
        body {
            margin: 0px;
        }
    </style>
    <body style="margin: 0px;"> <!-- or you can put as a style in the body tag -->
    </body>
</html>

No comments:

Post a Comment