I constantly use box-sizing: border-box; on all elements when creating CSS files, ie
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
However I cannot seem to get this to work with the file 'Normalize.css' (https://github.com/necolas/normalize.css)
I have tried adding the above code to the top of my own CSS file, within normalize itself, but have been unsuccessful
I would very much like to utilise normalize.css as it is not as drastic as some other CSS reset files, but how do I make it accept box-sizing: border-box; so that it effects all elements and is cross browser friendly?