开发者

IE9 Beta resizes form elements onhover bug

开发者 https://www.devze.com 2023-01-24 03:52 出处:网络
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\" attribu

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>
0

精彩评论

暂无评论...
验证码 换一张
取 消