Irina Glushko 2389e7160b HW1 done | преди 3 години | |
---|---|---|
.. | ||
CHANGELOG.md | преди 3 години | |
LICENSE.md | преди 3 години | |
README.md | преди 3 години | |
normalize.css | преди 3 години | |
opinionated.css | преди 3 години | |
package.json | преди 3 години |
@csstools/normalize.css is a CSS library that provides consistent, cross-browser default styling of HTML elements.
<link href="https://unpkg.com/@csstools/normalize.css" rel="stylesheet" />
npm install --save @csstools/normalize.css
Import @csstools/normalize.css in CSS:
@import '~@csstools/normalize.css';
Alternatively, import @csstools/normalize.css in JS:
import '@csstools/normalize.css';
In webpack.config.js
, use the appropriate loaders:
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: [ 'style-loader', 'css-loader' ]
}
]
}
}
Download
See https://csstools.github.io/normalize.css/latest/normalize.css
Please read the contribution guidelines in order to make the contribution process easy and effective for everyone involved.
normalize.css is a project by Jonathan Neal, co-created with Nicolas Gallagher.