-1

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?

Dan Brooks
  • 89
  • 1
  • 9

1 Answers1

0

Did you mean?

<input type="text" style="text-align:right; direction:rtl" />

Update:1

text rotation

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
  • @user3804691 Just add the css on the text instead of the div it's in? – Déjà vu Sep 01 '14 at 12:51
  • @ Déjà vu idea or see update and use it. – Hamix Sep 01 '14 at 12:53