postcss-vmin
Version:
PostCSS plugin to convert vmin to vm for IE9
29 lines (21 loc) • 477 B
Markdown
# PostCSS Vmin [](https://travis-ci.org/iamvdo/postcss-vmin)
A simple [PostCSS] plugin to convert `vmin` to `vm` for IE9.
[PostCSS]: https://github.com/postcss/postcss
```css
/* Input example */
.foo {
width: 50vmin;
}
```
```css
/* Output example */
.foo {
width: 50vm;
width: 50vmin;
}
```
## Usage
```js
postcss([ require('postcss-vmin') ])
```
See [PostCSS] docs for examples for your environment.