Ok, this is going to be an interesting one...
Pretty much I seem to have run into an interesting IE bug (feature) involving when a span is inside an anchor eg.
<a href='#'>
<span style="float:left;">Super cool link</span>
<span style="float:right;">10</span>
</a>
In IE, you seem to be able to left click through but you cannot right click on the item and get the link menu, this problem seems to be persistent across Google's services too, eg.
I'm wondering if anyone could shed some light on
- The cause of why this is happening
- A solution to this or a workaround
So far I have tried adding a
in the anchor and fiddled with z-indexes to no avail.
The only solution / workaround I can find is if you remove the Doctype the issue seems to go away. (not going to happen)
Ninja edit - You can't seem to CTRL + Click either
Ok another edit:
Looks like display: block;
on the span kills it - http://jsfiddle.net/vdfhz/4/