HTML CSS examples for CSS Layout:Text
HTML Text area with custom user font size style and colour
<html> <head> <style> #container {<!--from w w w .jav a 2s . c o m--> width:100%; text-align:center; } </style> </head> <body> <div id="container"> <textarea name="mytextarea" cols="10" rows="10" style="font-family:comic sans ms"></textarea> </div> </body> </html>