Align Input Textarea with other input field - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:textarea

Description

Align Input Textarea with other input field

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from www .  j a v a  2  s.c o m-->
 <body> 
  <textarea style="vertical-align:bottom"></textarea> 
  <input type="text">  
 </body>
</html>

Related Tutorials