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.
rotatexbehind 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 doingrotateywill make the left or right half of the link container unclickable. – Pirate Rob Jan 24 at 16:11-webkit-vendor prefixes directly in the CSS instead so it's not caused by the JS. – Pirate Rob Jan 24 at 16:18