# postcss-vmin

> PostCSS plugin to convert vmin to vm for IE9

Latest version **3.0.0** (published 2017-05-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-vmin
pnpm add postcss-vmin
yarn add postcss-vmin
bun add postcss-vmin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.0 |
| Published | 2017-05-11 |
| First published | 2015-02-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+6 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 13 |
| Author | Vincent De Oliveira |
| Maintainers | iamvdo |
| Keywords | postcss, css, postcssplugin, vmin, viewport units |

## Links

- npm: https://www.npmjs.com/package/postcss-vmin
- Repository: https://github.com/iamvdo/postcss-vmin
- Homepage: https://github.com/iamvdo/postcss-vmin#readme
- Issues: https://github.com/iamvdo/postcss-vmin/issues
- npm.io page: https://npm.io/package/postcss-vmin

## Dependencies (1)

- [postcss](https://npm.io/package/postcss.md) ^6.0.0

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 3.0.0 (latest) — 2017-05-11
- 2.0.0 — 2015-09-14
- 1.0.0 — 2015-02-19

## README

# PostCSS Vmin [![Build Status](https://travis-ci.org/iamvdo/postcss-vmin.svg)](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.

---
_Source: https://npm.io/package/postcss-vmin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
