sebastian_k
12
Q:

box-sizing

#example1 {
  box-sizing: border-box;
}
5
* {
  box-sizing: border-box;
}
0
example1 {
  box-sizing: border-box;
}
1
*{
 box-sizing: border-box;
 }
1
header, ul, nav, li, a /* other elements */{

 display: block;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
3
// Defines how the width and height of an element
// are calculated: should they include padding and borders, or not
* {
  box-sizing: border-box;
}
 
0

New to Communities?

Join the community