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

前端 未结 12 2709
萌比男神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:05

    Use CSS3 to make textbox and input work the same. See jsFiddle.

    .textarea, .textbox {
        width: 200px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; 
    }
    

提交回复
热议问题