HTML input element wider than Containing Div

前端 未结 7 1282
一个人的身影
一个人的身影 2020-12-13 23:43

I have an html element that is contained within a div. Height are dictated by the outer div and the height and width of the input control are 100%. At the most basic level,

7条回答
  •  [愿得一人]
    2020-12-14 00:04

    This made the job for me :

    input {
      padding: 0.2em; 
      box-sizing: border-box;
      width: 100% 
    } 
    

提交回复
热议问题