CSS Reset is found there to normalize CSS in browsers and gives you simpler and more intuitive design features.
For example, if you use <h1>
without CSS reset / normalization, it will have larger font-size
, some margin
s and bold font-weight
, with CSS reset, it will look like plain text, and it allows you to shape it like this as you want without worrying about browser settings, which may vary between browsers.
The question you have to ask yourself is , do you want it ?
Remember that CSS Reset need not be absolute if you want to remove all fields and paddings, but keep the font size and weight, you can use the classic * { padding: 0; margin: 0; }
* { padding: 0; margin: 0; }
* { padding: 0; margin: 0; }
, and then use a full-featured CSS reset.
source share