When 1 px border is added to div, Div size increases, Don't want to do that

后端 未结 18 1538
情话喂你
情话喂你 2020-12-07 15:09

On click I am adding, 1px border to div, so Div size increases by 2px X 2px. I dont want to get div size increased. Is there any simple way to do so?

18条回答
  •  有刺的猬
    2020-12-07 16:06

    This is also helpful in this scenario. it allows you to set borders without changing div width

    textarea { 
      -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
      -moz-box-sizing: border-box;    /* Firefox, other Gecko */
      box-sizing: border-box;         /* Opera/IE 8+ */
    }
    

    Taken from http://css-tricks.com/box-sizing/

提交回复
热议问题