Answers for "box sizing: border box;"

CSS
3

css box-sizing

/* Always keep this code inside your css file*/
*{
  box-sizing: border-box;
}
.div-1{
  /* width: 100%; Default - Block Element*/
  padding: 10px;
  box-sizing: border-box; 
  /* 
    content-box is default for box-sizing
    content-box will remove border-box effect.
  */
}
/*
  after applying padding [border also will increase the width]
  10px added to left and right from padding
  the .div-1 width is now 100% + 20px, and that may cause errors in your layout
  according to your work.
  to solve the problem and force the width to be as i give to it
  we use box-sizing => our div width will not be affected by padding or border
*/
Posted by: Guest on June-12-2021
1

box sizing css

/*universial selector example to include padding, border, and margin 
in all box sizing totals*/
* {
  box-sizing: border-box;
}
/*example of div that will total 100% and not exceed it because it
is using the border-box property*/
div {
box-sizing: border-box;
width: 100%;
border: solid #5B6DCD 10px;
padding: 5px;
margin: 10px;
}
Posted by: Guest on July-17-2021

Code answers related to "box sizing: border box;"

Browse Popular Code Answers by Language