Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
13textarea_text_inside.html
13textarea_text_inside.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Textarea text centered and right aligned</title> </head> <body> <form action="" method="POST" enctype="application/x-www-form-urlencoded"> centered text: <br><textarea name="var1" cols="50" rows="5" style="text-align:center;">center text</textarea> <br><br> right aligned: <br><textarea name="var2" cols="50" rows="5" style="text-align:right;">right text</textarea> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code