Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

textarea : change font

Status
Not open for further replies.

specv

Programmer
Aug 8, 2001
42
CA
Hi,

Is it possible to change the font of a textarea? If yes, how can I do this?

Thanks

Phil
 
Here is an example:

<html>
<head>
<style>
body {color:black; background:beige}
textarea {color:black; background:wheat; font: bold 22pt &quot;Arial&quot;}
</style>
</head>
<body>
<form>
<textarea rows=&quot;5&quot; cols=&quot;40&quot; />
</form>
</body></html>

Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top