I use the following CSS rules to convert to a simple H2 element, only the text inside it:
-moz-transform: matrix(0, -1, 1, 0, 130px, 118px);
-webkit-transform: matrix(0, -1, 1, 0, 130px, 118px);
It works as expected in Firefox; I don’t work at all in Safari / Windows and Chrome / Windows: H2 stays where it is. Am I doing something wrong or are CSS transforms inactive in these two Windows browsers?
source
share