I would like to make the written text in a text box tilt to its right. Can anybody help me with the code for that? Perhaps some kind of a font-family?
Asked
Active
Viewed 780 times
-1
-
Use [CSS 2D Transforms](http://www.w3schools.com/css/css3_2dtransforms.asp). – Weafs.py Sep 01 '14 at 12:38
-
http://www.css3maker.com/text-rotation.html – Miqdad Ali Sep 01 '14 at 12:38
-
1Are you asking how to make text *italic*? – Quentin Sep 01 '14 at 12:48
-
That could work, yes. – Dan Brooks Sep 01 '14 at 12:51
1 Answers
0
Did you mean?
<input type="text" style="text-align:right; direction:rtl" />
Update:1
use this tool to make rotation and get css code.
Update 2:
You can use this
<p contenteditable="true">This is an editable paragraph.</p>

Hamix
- 1,323
- 7
- 18
-
Not really. I would like to keep my text in the center but to use, I don't know, maybe some kind of a font family to make it tilt to the right, so it'll look better. Rotation moves the whole text box when being applied. – Dan Brooks Sep 01 '14 at 12:44
-
Yes, but this rotation moves my whole text box, and I only want to rotate the text written in it. How can I apply it only on the text written? – Dan Brooks Sep 01 '14 at 12:50
-
-