Css Layout Problem Putting Divs Inside Td Cell
I am re-laying out an old asp page in order to update it with some new requirements. I am trying to put some div tags inside a td cell because a table within the td cell would not
Solution 1:
My assumption - without having a live example of the page - is that your padding and width % are calculating differently in Mozilla, additionally, sometimes Mozilla requires 'display: inline-block' in order to display DIV and A tags the same way the IE does.
I would highly recommend researching the differences in the way these two browsers interpret CSS in particular their padding / margin calculations.
Last note - you are embedding a table within a table which will not meet W3C specifications.
Post a Comment for "Css Layout Problem Putting Divs Inside Td Cell"