相关片段如下:
<textarea class="w100"></textarea>
.w100 {
width:100%;
}
它在 Firefox 中有效,但在 IE6 中无效,为什么以及如何修复此错误?
**编辑:**添加 DIV 后,它现在可以工作了。
<fieldset>
<div>
<textarea class="w100"></textarea>
</div>
</fieldset>