Apr 5, 2002 #1 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
Apr 5, 2002 #2 CliveC Programmer Nov 21, 2001 1,222 US Here is an example: <html> <head> <style> body {color:black; background:beige} textarea {color:black; background:wheat; font: bold 22pt "Arial"} </style> </head> <body> <form> <textarea rows="5" cols="40" /> </form> </body></html> Hope this helps. Upvote 0 Downvote
Here is an example: <html> <head> <style> body {color:black; background:beige} textarea {color:black; background:wheat; font: bold 22pt "Arial"} </style> </head> <body> <form> <textarea rows="5" cols="40" /> </form> </body></html> Hope this helps.