Search code examples
csstexttextareaalignment

Floating text to the right inside of textarea


I know this may seem like a silly question, but I never had to do this until now. Is there a way to float text to the right while inside of a form text area?


Solution

  • Not sure what you mean by "float", but if you mean to just right align the text then you can do it like this:

    textarea{
        text-align:right;
    }
    

    Here is a working example