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
12textarea_text_beside_label.html
12textarea_text_beside_label.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Textarea text beside</title> </head> <body> <form action="" method="POST" enctype="application/x-www-form-urlencoded"> <label for="df">default is bottom:</label> <textarea name="var1" id="df" cols="50" rows="5"></textarea> <br><br> <label for="tp">top:</label> <textarea name="var1" id="tp" cols="50" rows="5" style="vertical-align:top;"></textarea> <br><br> <label for="md">middle:</label> <textarea name="var1" id="md" cols="50" rows="5" style="vertical-align:middle;"></textarea> <br><br> <label for="bt">bottom:</label> <textarea name="var1" id="bt" cols="50" rows="5" style="vertical-align:bottom;"></textarea> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code