Last Updated: February 25, 2016
·
576
· max_strebel

using * { box-sizing: border-box; } can prevent a lot of layout-headaches.

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box; 
}

1 Response
Add your response

I use the compass mixin and generates that css:

*
  +box-sizing(border-box)
over 1 year ago ·