To bring a table up to the very top, which codes do you use that's compliant with HTML 4.0 transitional.. OR XHTML 1.0 transitional? (I'm mainly looking for an HTML one). I've tried <body topmargin="0"> but it says that it's invalid yet it shows the results I want.. Thanks.
Here is the XHTML way to do it <style> body { top-margin: 0px; } </style> Now that you have styled your body tag, you can use it normally <body> </body> you can also set the margins of the other side the same way by just replace "top" with "bottom" or "right" or "left" Here is the HTML way to do it <body marginheight="0" topmargin="0"> Marginheight and topmargin are both the same thing. Topmargin will show up as invalid, but I've found it keeps IE happy. Otherwise, marginheight is what your looking for.