postcss-vmin

PostCSS plugin to convert vmin to vm for IE9

MIT 3 个版本
安装
npm install postcss-vmin
yarn add postcss-vmin
pnpm add postcss-vmin
bun add postcss-vmin
README

PostCSS Vmin Build Status

A simple PostCSS plugin to convert vmin to vm for IE9.

/* Input example */
.foo {
  width: 50vmin;
}
/* Output example */
.foo {
  width: 50vm;
  width: 50vmin;
}

Usage

postcss([ require('postcss-vmin') ])

See PostCSS docs for examples for your environment.

版本列表
3.0.0 2017-05-11
2.0.0 2015-09-14
1.0.0 2015-02-19