Hey,
I'm currently trying to code in tables (fun).
Anyways, I want to put a table to the top.
I don't know how.
I've tried adding divs to the tables, and to:
But it doesn't seem to work.margin-top: 0px;
Anyone know how?

Hey,
I'm currently trying to code in tables (fun).
Anyways, I want to put a table to the top.
I don't know how.
I've tried adding divs to the tables, and to:
But it doesn't seem to work.margin-top: 0px;
Anyone know how?
If you mean you want the table to be right at the top of the page, with no margin use this-
HTML Code:<style type="text/css"> body { margin-top:0px; } </style>
Lets set the stage on fire, and hollywood will be jealous.
Code:<style type="text/css"> body { margin: 0; } </style>
yes and margin: 0px would set it to left, right, top and bottom
for only top use
Code:body { margin-top: 0px; }
Want to hide these adverts? Register an account for free!