CSS - NORMALIZATION
Links
- Can I USE
- Normalize.css Remove differences between browsers but keeping the defaults that we are used to.
- Reset.css Harcore removing styles. Everything is the same
// NORMALIZE / RESET STYLES
Download Normalize.css or install npm
Reset css file
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}