hai | | Hi, i agree with the others answers. you use a different way to apply the style 2:
add the style to the header of your html document:
<head>
<style type="text/css">
<!--
.txtarea-style {
background-color: #A6B0F7;
height: 100px;
width: 300px;
border: thin solid #000066;
}
-->
</style>
</head>
then attach the style to your text area
<textarea name="textfield" cols="25" rows="5" class="txtarea-style"></textarea> |