[Solved] What is normalized css?


Normalize.css is an open source .css file that Nicolas Gallagher made on GitHub: https://necolas.github.io/normalize.css/

It allows you to apply a “Reset” to your code in order to let most modern browsers use your CSS. To use it, you need to link to it in your HTML like you would any other CSS, but make sure it’s above the main stylesheet so that the “Reset” is applied before your own styles.

http://adamkaplan.me/css-workshop/#normalize

1

solved What is normalized css?