Can anyone tell me why this code will not work in mozilla while it will work in internet explorer???
table.news {position:absolute; top:121px; left:124px;}
table.links {position:absolute; top:100; left:15;}
Can anyone tell me why this code will not work in mozilla while it will work in internet explorer???
table.news {position:absolute; top:121px; left:124px;}
table.links {position:absolute; top:100; left:15;}
Mozilla doesn’t like it when you do positioning with tables I don’t think.
The easiest way is to just wrap the table in a div. I’m not sure why that happens, but whatever. You also don’t seem to be able to give <td>'s margins/padding, which is occaisionally annoying…
Hmm that may work Ill switch the table tags over to div tags. That should fix it.