Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When rotating hyperlinks in Internet Explorer 9, the painting to the screen seems to be handled fine, but the clickable area doesn’t appear to respect this.

Whether the rotation is done with -ms-transform, filter, or -ms-filter doesn’t seem to matter. It also doesn’t seem to matter whether you rotate the hyperlink itself (a:link), or its container (for example a div). With the latter, overflow:hidden isn’t respected either (again, for the clickable area; the painted area is clipped as expected).

Is there any way to fix this, or should I fall back to area[coords] (which, of course, is not preferable)?

share|improve this question

1 Answer

up vote 0 down vote accepted

Sadly i'm having the same issue when trying to turn a button for 90 degrees. The clickable area in IE is only on the top of the button. Shitty IE =[

I really don't want to use an image for a button...

Found out this thread: Rotating clickable elements in IE8+ maybe it will help you (and me)...

share|improve this answer
Seems like that thread does not offer a solution for IE9 either. (I would be surprised if it did, since my code already used the proprietary DXImageTransform.Microsoft.Matrix.) One solution (read: workaround) I came up with is using area’s with type="poly" and coords values corresponding to the coordinates of the area that should be clickable (and putting them in IE conditional comments). However, I did not use this for the project because it did not help the hover effects I also needed. – ACJ Aug 16 '12 at 0:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.