I have a hexagon grid, and I've used -webkit-backface-visibility:hidden
to smooth out the edges in Chrome. But, this makes the text inside it blurry.
So I tried moving the text out of the backface element and instead absolutely positioned it on top. This fixed the blurriness, but created a new problem. Each hex shape is a link. Once I moved the link out of the child element, the links overlap the preceding hex shape in the interlocking grid.
See how when you scroll over the right side of the first hex, you get the link for Hex 2 because it overlaps it.
Is there a way to have smooth hex edges AND clear text AND not overlap the links?