IE9 Beta resizes form elements onhover bug
The form fields have width applied to them thr开发者_如何学Pythonough CSS but when I hover over the textarea it resizes it width-wise to a completely different size.
Make sure that the "cols" attribute is not present.
Wrong:
<textarea id="some" cols="20"></textarea>
Correct:
<textarea id="some"></textarea>
精彩评论