I would like to italicize text backwards or the the left the opposite way of this current text. Is this possible to do in HTML/CSS or even with Javascript/jQuery?
|
|
I think this might be what you're looking for? jsFiddle
|
||||
|
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 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
jQuery
CSS
|
||||
|
|