2

When I transform a div with CSS transforms, the text and/or links in that div are only selectable in the left half of the div.

I've created a simple sample of the problem I have:

http://jsfiddle.net/mgA6z/

Does anyone have a solution to make the whole text/links clickable? The full link gets clickable whhen the rotateY is removed:

-webkit-transform: rotateY(30deg);
dimitri010
  • 47
  • 5

1 Answers1

0

if you remove

 -webkit-transform-style: preserve-3d;

the link is fully clickable (and visually there's no difference in the demo w/wo this property set).

Example (for webkit): http://jsfiddle.net/yvngm/

Fabrizio Calderan
  • 120,726
  • 26
  • 164
  • 177