Shading a <TEXTAREA> Box

B

Bill

For IE5+, how do I color the inside of a <TEXTAREA> box?

Same question for an <INPUT> area.

Thanks!
 
S

Stefan B Rusynko

Apply a CSS style




| For IE5+, how do I color the inside of a <TEXTAREA> box?
|
| Same question for an <INPUT> area.
|
| Thanks!
|
|
|
 
A

Andrew Murray

apply a style

<textarea rows="2" name="S1" cols="20" style="background-color:
#008000"></textarea>

and for the input text box, same idea.
<input type="text" name="T1" size="20" style="background-color: #5068A8">
 
Top