Jul 10, 2004 #1 fpgiv Programmer Joined Oct 1, 2003 Messages 91 Location 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 Joined Mar 8, 2004 Messages 4,863 Location 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>
Jul 10, 2004 Thread starter #3 fpgiv Programmer Joined Oct 1, 2003 Messages 91 Location US Sweet. Thanks! Upvote 0 Downvote