Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Floating text to the right inside of textarea [closed]

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?

like image 920
micker Avatar asked Sep 06 '25 03:09

micker


1 Answers

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

like image 59
musefan Avatar answered Sep 07 '25 22:09

musefan