# css-global-keywords

List of global, CSS-wide keywords:
- [`initial`](https://developer.mozilla.org/en-US/docs/Web/CSS/initial)
- [`inherit`](https://developer.mozilla.org/en-US/docs/Web/CSS/inherit)
- [`unset`](https://developer.mozilla.org/en-US/docs/Web/CSS/unset)

## Installation

```
npm install css-global-keywords [--save[-dev]]
```

## Usage

```js
var cssGlobalKeywords = require('css-global-keywords');
cssGlobalKeywords; // ['initial', 'inherit', 'unset']
```