Urara-Blog/node_modules/.pnpm-store/v3/files/de/44d324ac279ac2648161b3b4889991518cfad2332746bd91f824e2723f0334b6f8516f1f0a4fa5f238cf61f357286e144a88e665eb50129f548ce388b09c28
2022-08-14 01:14:53 +08:00

31 lines
720 B
Text

# @unocss/reset
Collection of standard reset CSS stylesheets.
```bash
npm i @unocss/reset
```
```ts
// main.js
// pick one of the following
// normalize.css https://necolas.github.io/normalize.css/
import '@unocss/reset/normalize.css'
// sanitize.css https://github.com/csstools/sanitize.css#usage
import '@unocss/reset/sanitize/sanitize.css'
import '@unocss/reset/sanitize/assets.css'
// reset.css by Eric Meyer https://meyerweb.com/eric/tools/css/reset/index.html
import '@unocss/reset/eric-meyer.css'
// preflights from tailwind
import '@unocss/reset/tailwind.css'
// opinionated reset by Anthony Fu
// https://github.com/unocss/unocss/blob/main/packages/reset/antfu.md
import '@unocss/reset/antfu.css'
```