JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q42732F
  • License MIT

CSS normalize with basic additional styles

Package Exports

  • extended-normalize.css

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extended-normalize.css) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

extended-normalize.css

CSS normalize with basic additional styles

GitHub license GitHub release

How to use ?

Either, use NPM

npm install --save extended-normalize.css

Then, in your "main" js file,

import "extended-normalize.css";

Or, include this inside the "html" file, on the "head" tag

<link
  rel="stylesheet"
  href="https://unpkg.com/extended-normalize.css@2.1.0/extended-normalize.css"
/>

Or, import in your "main" css file

@import url("https://unpkg.com/extended-normalize.css@2.1.0/extended-normalize.css");

Or, view Raw

What does it do?

  • Inherits everything from normailze.css by Necolas Gallagher
  • Makes the typography consistent among various HTML tags including input-fields, tables, buttons, select-options, etc.
  • Improves the appearance of form-fields, buttons, tables, and lists.
  • Makes other subtle style modifications on different tags to make them look neat.
  • Explains what code does using detailed comments.

Author Rahul Dahal