Stating page with 1 table on the top

Hi, I<br />
I want to start my page with a simple color table (different color from the body color) to right and left align some info on the same line. Using a table creates a blank space on top of the page that I cannot get ride of.<br />
<br />
Does anyone know how to get ride of this space? is it possible to do it with tables or do I need to use images?<!--content-->starting anything creates a small margin at the top (and bottom and sides) of a webpage. <br />
<br />
Try this, in the head section of your webpage:<br />
<br />
<head><br />
<style type="text/css"><br />
body {margin: 0px 0px 0px 0px;}<br />
</style><br />
</head><br />
<br />
the order of the margins is like this:<br />
<br />
margin: top right bottom left<br />
<br />
so to have only a zero top margin and 5 pixel margins for the rest of a webpage you would do this:<br />
<br />
body {margin: 0px 5px 5px 5px;}<!--content-->thanks a lot it works :cool:<!--content-->
 
Back
Top