My website displays boxes in table format with borders applied using CSS. When viewed in Chrome, the output is as expected. However, when viewed in Internet Explorer and Firefox, the rendering is completely off (linked images on tinypic). Below is the CSS code I am using:
table#homeblockscontainer td
{
border: 6px solid #EEEEEE;
margin: 0;
padding: 0;
}
The table has this specific ID with nested rows and data cells.
Desired outcome: Chrome Result
Actual outcome in Firefox: Firefox Result
If anyone has insight into why this discrepancy is occurring, please provide assistance. Thank you in advance!