Jul 10, 2004 #1 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.
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.
Jul 10, 2004 2 #2 vongrunt Programmer Mar 8, 2004 4,863 HR 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> Upvote 0 Downvote
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>