Given
<div>
<textarea></textarea>
</div>
Why is this
<div>
<textarea class="width90"></textarea>
</div>
.width90{
width:90%;
}
any better than this?
<div>
<textarea style="width:90%;"></textarea>
</div>
edit: I updated my example better. My question should be more related to generic styles like widths, text align, etc.