box-sizing-reset.css

Just the simple box-sizing reset, as plain css, in npm

Usage no npm install needed!

<script type="module">
  import boxSizingResetCss from 'https://cdn.skypack.dev/box-sizing-reset.css';
</script>

README

box-sizing-reset.css

Just the simple box-sizing reset, as plain css, in npm.


Usage

Install with npm install box-sizing-reset.css.

Use in your app with

import "box-sizing-reset.css;

Content

It's simply the plain box-sizing reset, as following:

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}