I am having a lot of trouble with table cell paddings in Chrome. It seems that if a table cell does not contain pure text, then no padding is applied at all. My markup:
Solution 1:
Removed table-layout: fixed
and it seems to work.
If table-layout: fixed
is to be used, then width
instead of min-width
should be use to define column widths.
Not sure why only Chrome was playing up, but perhaps it has a better standards implementation.
Post a Comment for "Table Cell Padding Woes With Chrome"