related snippet as follows:
<textarea class="w100"></textarea>
.w100 {
width:100%;
}
It works in firefox but not in IE6, why and how to fix this bug?
EDIT:AFTER ADDING A DIV,IT WORKS NOW.
<fieldset>
<div>
<textarea class="w100"></textarea>
</div>
</fieldset>