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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Textarea Font Manipulation 2

Status
Not open for further replies.

fpgiv

Programmer
Oct 1, 2003
91
US
Hi,
Is there any way to format text inside of a text area? I want to make the font arial and shrink the size down?
Thanks.
 
Yup... simple:
Code:
<style type="text/css">
.custom
{	font-family: Arial;
	font-size: 7pt;
}
</style>

<textarea class="custom">Blah blah Blah blah Blah blah Blah blah Blah blah </textarea>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top