Resets and Normalization
Learn about CSS resets and normalization.
We'll cover the following...
Why we need CSS resets and normalization
It’s important for HTML elements to look the same, regardless of which browser is being used to view the web page. Unfortunately, this isn’t true by default due to the way browsers run.
Each browser has its default style sheet that specifies some minimal rules for the elements.
For example, an unstyled <h1>
...