Is there any way to use Normalize css and at the same time give a global reset in style sheets? I use the reset like this in my css:
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
But even putting my file in the rel link later in the normalize css it fails to override. Is there any way to make this work along with normalize?