[css-d] Annoying Safari issue - hidden links with images still clickable

2006-03-16 Thread Christian Heilmann
I just realised a really annoying Safari bug: If you have an image inside a link and you hide the link via visibility:hidden the link is still clickable. Demo Case: http://icant.co.uk/sandbox/hiddenNotGone.html Is there a way around this issue - is it known? The reason I am using visibility

Re: [css-d] Annoying Safari issue - hidden links with images still clickable

2006-03-16 Thread Ed Seehouse
On 3/16/06, Christian Heilmann [EMAIL PROTECTED] wrote: I just realised a really annoying Safari bug: I think that's as it should be, according to the standard: visibility:hidden reserves the same space for an element. If you want to remove an element from the flow I believe you need to use

Re: [css-d] Annoying Safari issue - hidden links with images still clickable

2006-03-16 Thread Christian Heilmann
I just realised a really annoying Safari bug: I think that's as it should be, according to the standard: visibility:hidden reserves the same space for an element. If you want to remove an element from the flow I believe you need to use display: none instead. That is not the issue, I want