Unable to set textarea width with CSS

前端 未结 8 1759
梦谈多话
梦谈多话 2021-02-07 00:00

I have attempted to use this CSS to set the width of my form elements:

input[type=\"text\"], textarea { width:250px; }

If you look at this Fire

8条回答
  •  春和景丽
    2021-02-07 00:36

    you may use:

    input[type="text"], textarea { 
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    

提交回复
热议问题