In "[CSS] Prohibit Google Chrome from allowing definition and adjustment of multi-line text boxes" (click to open the link), it has been mentioned how to fix the multi-line text box Textarea in some DOM2 browsers.
No, the multi-line text box Textarea also has some style flaws in IE.
An ordinary text box without any definition, as follows:
<textarea cols="30" rows="3"></textarea>
You can add overflow-y at this time: hidden; as follows:
<textarea cols="30" rows="3" style="overflow-y:hidden;"></textarea>
Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.