Is there a simple way to make html textarea and input type text equally wide?

前端 未结 12 2720
萌比男神i
萌比男神i 2021-02-18 19:29

Is there a simple way of getting a HTML textarea and an input type=\"text\" to render with (approximately) equal width (in pixels), that works in different browsers?

A C

12条回答
  •  生来不讨喜
    2021-02-18 20:01

    Someone else mentioned this, then deleted it. If you want to style all textareas and text inputs the same way without classes, use the following CSS (does not work in IE6):

    input[type=text], textarea { width: 80%; }
    

提交回复
热议问题