That works in both browsers, but I think it's the <table align="center"> that's throwing it off. FireFox is acting like you're using vAlign="center" although I think that only applies to a row, not the entire table.
But the table starts at pixel (0, 0), or owns space starting there. Try FireBug; it might help you track things down. I can't really figure it out, it looks like the table goes to the top of the page, but is part blank.
The problem is that in this case, the table isn't necessary.
ana_rad, if you want your site to be a fixed width, then use a wrapper div. There's a lot less code, divs are vertically aligned to the top by default, and it loads faster.
Code:
#wrapper {
margin: 0;
padding: 0;
width: 800px;
}
...
<body>
<div id="wrapper">
Your middle part
</div>
</body>
Well.. only if you're going to use ID's Each div could have a class applied too.
Dang -- wish this keyboard would type what I'm saying out loud ... maybe I need a "talking puter" -- on 2nd thought, that might not work, as it would probably lock up on certain words...
« Reply to Body tag margin=0 doesnt work in firefox