PDA

View Full Version : font type of textarea in CSS


ooiooipig
04-03-2003, 07:39 AM
Hi all, can anyone please help me by telling me if I can set the font of a textarea in a CSS??

Cris79
04-03-2003, 08:06 AM
<HTML>
<HEAD>
<TITLE></TITLE>
<style>
textarea.t1 {font-family:arial;font-weight:bold;font-size:14pt;color:#00008b;}
</style>
</HEAD>
<BODY>
<form>
<textarea name="textbox" rows="2" cols="15" class="t1">
bla bla bla bla bla bla bla bla bla
</textarea>
</form>
</BODY>
</HTML>

ooiooipig
04-03-2003, 09:11 AM
ok i got it!! thanks a million!! this forum has really been a great help to me!!