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

前端 未结 12 2734
萌比男神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 19:51

    input[type="text"] { width: 60%; } 
    input[type="email"] { width: 60%; }
    textarea { width: 60%; }
    textarea { height: 40%; }
    

提交回复
热议问题