I prefer the CSS border-box model, and I guess a lot of other people do too:
*, *:before, *:after {
box-sizing: border-box;
}
However CSS Lint warns me:
The universal selector (*) is known to be slow.
Is that really the case here? Using the border-box model is perhaps the most common today, and I would be surprised if browsers did not optimize that. But maybe I am wrong?