My CSS-Autoprefixer Settings for IE9 and Up
January 24, 2015
Chances are, you use the border-box
default, too:
*, *:before, *:after {
box-sizing: border-box;
}
Today I stumbled upon the fact that many still kinda recent browser versions need prefixing for that. What I want is:
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
. . .