Click to See Complete Forum and Search --> : How to make the page fit on the top left?


hitman
01-06-2005, 01:12 PM
My pages keep having a gap between the left and top border of the browser window.

How is it possible to make them stick to the borders (left and top)?

heavenly_blue
01-06-2005, 01:30 PM
Put this in the <head>:


<style type="text/css">
body{margin:0; padding:0;}
</style>


...that will get rid of the space on all sides (top right bottom left).

If you still want the gap on the bottom and right sides use:


<style type="text/css">
body{margin-top:0; margin-left:0; padding-top:0; padding-left:0;}
</style>