I would like to know how you align a table to the very top of the screen. I don't want to see any space between the top edge of the screen and the table and it seems that Internet Explorer, by default, is doing that.
You'll need to set margins and paddings on the table as well as on the document to 0px.
try the CSS:
Code:
html,body{
margin-top:0px;
}
and in your table:
<table style="margin-top:0px; padding-top:0px; border-top:0px;">...
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.