My challenge now is to position text on top of elements that have been transformed using -webkit-transform:translate3d()
. The issue I've encountered is that the only effective method I've found to stack an element on top of a 3D-transformed object is by also using translate3d()
and placing it above on the z-axis. While this works well for images and shapes, it unfortunately results in blurry text which is not acceptable.
Is there a way to either float non-3D-transformed text on top of a 3D-transformed element or maintain the sharpness of the text?