@csstools/normalize.css normalize

@csstools/normalize.css is a CSS library that provides consistent, cross-browser default styling of HTML elements.

Usage

html <link href="https://unpkg.com/@csstools/normalize.css" rel="stylesheet" />

Install

sh npm install --save @csstools/normalize.css

Webpack Usage

Import @csstools/normalize.css in CSS:

css @import '~@csstools/normalize.css';

Alternatively, import @csstools/normalize.css in JS:

js import '@csstools/normalize.css';

In webpack.config.js, use the appropriate loaders:

js module.exports = { module: { rules: [ { test: /\.css$/, use: [ 'style-loader', 'css-loader' ] } ] } }

Download

See https://csstools.github.io/normalize.css/latest/normalize.css

What does it do?

Browser support

Contributing

Please read the contribution guidelines in order to make the contribution process easy and effective for everyone involved.

Similar Projects

Acknowledgements

normalize.css is a project by Jonathan Neal, co-created with Nicolas Gallagher.