mordred
01-27-2004, 11:23 AM
Consider the following code snippets:
CSS:
#head, #foot {
background-color : #EEE;
}
#head td {
border-bottom : 1px solid #999;
}
HTML:
<tr id="head">
<td>foo</td>
<td> </td>
</tr>
In IE5 on Mac, the bottom border is not shown for the second cell, which has no content aside from a single space. In IE, Moz, Opera on Windows everytime the border is shown. How do I force IE5 Mac to render bottom borders even when no content is in the cell? Assigning a width to the cell did not help.
Hoping for some insight on this issue,
mordred
CSS:
#head, #foot {
background-color : #EEE;
}
#head td {
border-bottom : 1px solid #999;
}
HTML:
<tr id="head">
<td>foo</td>
<td> </td>
</tr>
In IE5 on Mac, the bottom border is not shown for the second cell, which has no content aside from a single space. In IE, Moz, Opera on Windows everytime the border is shown. How do I force IE5 Mac to render bottom borders even when no content is in the cell? Assigning a width to the cell did not help.
Hoping for some insight on this issue,
mordred