Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Italicize font the oposite direct? Re: Italicize font the oposite direct?

#125693
Mottie
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);
}