In the following HTML code, the whitespace to the right of "bla" is
clickable, whereas the whitespace to the right of "blubb" is not.
That is, IE6 behaves like this. In Mozilla 1.4, both areas of
whitespace are clickable.
How do I make that whitespace (to the right of "blubb") clickable in
IE6, too?
It's okay to use something other than tables. Actually, I am trying
to produce a column of "buttons" which stretch across the whole width
of the frame. I'm still not sure how to get the 3d look that buttons
in Windows normally have...
tia,
Kai
PS: Frame layout is required because the user is supposed to be able
to resize that column of buttons with the mouse.
<html>
<body>
<table width="100%" border="1">
<tr>
<td>
<a href="http://www.leo.org/">
<div>bla</div>
</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.google.com/">
<div>blubb</div>
</a>
</td>
</tr>
</table>
</body>
</html>
clickable, whereas the whitespace to the right of "blubb" is not.
That is, IE6 behaves like this. In Mozilla 1.4, both areas of
whitespace are clickable.
How do I make that whitespace (to the right of "blubb") clickable in
IE6, too?
It's okay to use something other than tables. Actually, I am trying
to produce a column of "buttons" which stretch across the whole width
of the frame. I'm still not sure how to get the 3d look that buttons
in Windows normally have...
tia,
Kai
PS: Frame layout is required because the user is supposed to be able
to resize that column of buttons with the mouse.
<html>
<body>
<table width="100%" border="1">
<tr>
<td>
<a href="http://www.leo.org/">
<div>bla</div>
</a>
</td>
</tr>
<tr>
<td>
<a href="http://www.google.com/">
<div>blubb</div>
</a>
</td>
</tr>
</table>
</body>
</html>
Comment