# Zero Style

Reset most of all styles to Zero. You can try on [Sample Page](https://vogel0831.github.io/zero-style/).

## Features

- 0px `border`, `margin`, `padding`
- Unaffected font
- Nonunderlined link.
- No appearances of form part
- Width of `<img>` limited to 100%
- `vh` class for Visually Hidden (screen reader only) labels.
- And other trivial functions

## Installation

### npm or other PM for Node
```shell
npm i zero-style
# OR
[pnpm|yarn|deno|bun] add zero-style
```

## Usage

### Webpack with css-loader, Vite
```javascript
import 'zero-style'
```

### CDN
```html
<!-- Before other styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/zero-style"> 
<!-- OR -->
<link rel="stylesheet" href="https://unpkg.com/zero-style"> 
```
In both cases, do not add a slash at the end. Otherwise, it will not be redirected correctly.
