fixed 3D text in Firefox ... is it Firefox bug, Webkit bug or specification bug? :)

This commit is contained in:
Bartek Szopka
2012-02-02 20:43:02 +01:00
parent 65fcaeed0a
commit 7b4393cfc9

View File

@@ -323,6 +323,14 @@ a:hover {
/* it's in 3D */ /* it's in 3D */
#its-in-3d p {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d; /* Y U need this Firefox?! */
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
}
#its-in-3d span, #its-in-3d span,
#its-in-3d b { #its-in-3d b {
display: inline-block; display: inline-block;