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.

I am thinking this is probably an obscure Google Chrome bug, in short, I have a nav that contains a list split into columns with CSS columns, and elsewhere on the page, an element with a 'flip around' effect implemented using transform rotate3D.

When the combination of the transform and the columns are both active on the page, the click events of the anchors in my navigation do not fire. They do however go through all of their states, including hover and active, they look like they should be clicking, but the user is not navigated away.

There is no JS event.preventDefaulting them.

The elements are no where near each other in either the DOM or the rendered styling.

Inspecting the page confirms the above, even when the transformed element is invisible due to its 3D rotation + backface invisible, the outline projected by inspector shows the element is still nowhere near the broken links.

Unticking either the transform or the columns makes the links work again.

Neither the columns nor the 3D transform are something I can achieve very easily with alternate techniques, the website is highly responsive and both of these are pretty integral to the way it works.

The problem is not present when the transformed element is display none'd, presumably because the transform is ignored in this case.


See my jsFiddle here: CSS transform rotate3D + columns causing unclickable links in columns.

share|improve this question
Any chance you could provide a reduced test case on jsbin/jsfiddle? – Remy Jan 23 at 11:09
1  
Behold the most verbose jsfiddle in all of the land: jsfiddle.net/7A85g – Steve Jan 23 at 12:06
I made some minor adjustments, even more confusingly.. it's MOST of the click events that don't happen, on rare occasions they do seem to fire. jsfiddle.net/stevelacey/7A85g/2 – Steve Jan 23 at 12:50
I created a simple jsFiddle here that demonstrates the problem. I'm placing an element with rotatex behind some links and it interferes with the ability to click on them. The element is rotated so the top is 'towards' the viewer and the top 50% of the link container is unclickable. You can play with the CSS to rotate the other way and make the bottom half unclickable. Similarly doing rotatey will make the left or right half of the link container unclickable. – Pirate Rob Jan 24 at 16:11
Forgot to point out: no such problem in Firefox. Also in my fiddle I'm using -prefix-free but the problem persists if I put the -webkit- vendor prefixes directly in the CSS instead so it's not caused by the JS. – Pirate Rob Jan 24 at 16:18
show 1 more comment

1 Answer

I had a similar issue before while doing this (CSS lines 37 to 42). The solution for me was found here: Mouse up/click event not firing after translateZ

share|improve this answer
This was my first thought too, alas, it is the anchor gets selected, there is some stuff going on with postition and z-indexes, but I think it's unrelated. – Steve Jan 23 at 12:10
1  
I had a similar issue before now that I think about it (while doing this: codepen.io/remybach/pen/armbd - CSS lines 37 to 42). The solution for me was found here: stackoverflow.com/questions/11764151/… – Remy Jan 23 at 13:20
Did that help at all? – Remy Jan 24 at 7:38
Yes, amend your answer to include the solution and reference and I will accept it. – Steve Jan 30 at 9:37

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.