Hi All
Using IE6 I want to display an anchor tag in block mode as the second cell in a row of a table. I want to use block mode so that the user can click anywhere within the cell to trigger the event (yes, it's a menu bar!)
Anyway, it works if it's the *first* cell:
<table width="100%" border="2">
<tr>
<td><a href="#" style="display:block; cursor:hand">Some text</a></td>
</tr>
</table>
But not if it's the second:
<table width="100%" border="2">
<tr>
<td>...</td>
<td><a href="#" style="display:block; cursor:hand">Some text</a></td>
</tr>
</table>
Now, I've been scratching my head for a while on this, and more worryingly have just discovered that it works in Mozilla 1.5.
Any help is immensely appreciated.
Cheers
Stu
Using IE6 I want to display an anchor tag in block mode as the second cell in a row of a table. I want to use block mode so that the user can click anywhere within the cell to trigger the event (yes, it's a menu bar!)
Anyway, it works if it's the *first* cell:
<table width="100%" border="2">
<tr>
<td><a href="#" style="display:block; cursor:hand">Some text</a></td>
</tr>
</table>
But not if it's the second:
<table width="100%" border="2">
<tr>
<td>...</td>
<td><a href="#" style="display:block; cursor:hand">Some text</a></td>
</tr>
</table>
Now, I've been scratching my head for a while on this, and more worryingly have just discovered that it works in Mozilla 1.5.
Any help is immensely appreciated.
Cheers
Stu