What's the difference between sizing a textarea with cols and rows and sizing a textarea with height and width?
<textarea id="TextArea1" cols="73" rows="12">with cols rows</textarea>
<textarea id="TextArea2" style="height:200px; width:600px";>with CSS</textarea>