I would like to italicize text backwards or the left the opposite way of this current text. Is this possible to do in HTML/CSS or even with Javascript/jQuery?
How to italicize text backward?
7.4k Views Asked by L84 AtThere are 6 best solutions below

You might be able to rotate the text.
http://snook.ca/archives/html_and_css/css-text-rotation
Seems difficult, but you will probably have to do this on a per-character basis. Not quite the intended skewing effect, but is close.

Your only real option I believe would be to find (or create) a font that has backward italic letterforms and embed it into your webpage via a custom @font-face
.
For that you can use one of many online font-face generators, such as FontSquirrel

I updated jos' demo to use jQuery to wrap each letter in a span, then transform each letter using the example from Mozilla's transform docs & a demo:
HTML
<div id="skewed">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque eu metus nisi.
Integer non adipiscing massa. Etiam et diam magna. Mauris sit amet arcu dui, a
malesuada erat.
</div>
jQuery
// html function requires jQuery 1.4+
$('#skewed').html(function (i, h) {
h = h.replace(/\s+/g, '\u00a0').split('');
return '<span>' + h.join('</span><span>') + '</span>';
});
CSS
#skewed {
font: 24px Georgia, sans-serif;
background: #ccc;
padding: 10px 20px;
}
#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);
}

Use and embed into your website a left-leaning italic compatible font, like this one. There are free alternatives here.
I think this might be what you're looking for? jsFiddle
Play with the code a bit. Otherwise pretty sure it's impossible. You CAN do this in image editing software, such as Paintshop, etc.