문제

The form fields have width applied to them through 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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top