Does anyone have idea why formatting such as background-color and border-top would work for <td> classes but not <tr> classes in IE6? They work in firefox, just not IE. Font colors work in both tr and td in both browsers, so I know that the tags are having some effect on the contents of the cell, but not the cell itself?
Code:
tr.productRow{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-align: center;
/*ignored in ie, but works in firefox*/
background-color: #fff;
}
td.productCell{
padding-top: 2px;
padding-bottom: 2px;
border-top: 1px solid #69C;
border-bottom: 1px solid #69C;
/*I have experimented with no formatting in this cell, specifying
the background as transparant, etc but nothing seems to allow the
formatting from the table row for background or border info to
display.*/
background: transparent;
}
Anyone have any idea? I've been struggling with this for almost two days now.
Bookmarks