Jump to content

CSS Rendering in Firefox and Internet Explorer

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
bussinessmenss

bussinessmenss

    Newbie

  • Members
  • Pip
  • 3 posts
Hey guys, is it true that the output for the above will be different in both browsers?

Im trying to position a table right all the way to the top using CSS. Somehow, my desired output works in Firefox but not in Internet Explorer. The table doesnt stick all the way to the top edge in IE.

What do u tink i should do?

CSS Code:
table {
position: fixed;
top: -1px;
border-collapse:collapse;
}

#2
Lop

Lop

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,172 posts
Absolute positions in IE 6 do not work correctly. In FF this will be at the very top of the screen but in IE this will be about 50-100px below the top of the screen. IE 7+ this will work though.