ben-g
2/7/2017 - 6:19 PM

Best practice catch all for border sizing with vendor prefixing.

Best practice catch all for border sizing with vendor prefixing.

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }