Home › Forums › CSS › Italicize font the oposite direct? › Re: Italicize font the oposite direct?
February 22, 2013 at 7:47 pm
#125693
Member
Hmm, actually it would be easier to use and control by using skewx instead ([updated demo](http://jsfiddle.net/Mottie/dRQaw/511/)):
#skewed span {
display: inline-block;
/* see https://developer.mozilla.org/en-US/docs/CSS/transform */
-webkit-transform: skewx(20deg);
-o-transform: skewx(20deg);
transform: skewx(20deg);
}