postcss-edgie

1.0.4 • Public • Published


Edgie is a PostCSS plugin to easily target Edge and IE.

Built out of frustration with trying deal with specific Edge and IE issues in modern projects.

Note: This only targets the pre-Chromium version of Edge (v44)

Getting started

npm install --save postcss-edgie

Usage

postcss.config.js

module.exports = {
  plugins: [
    require('postcss-edgie'),
  ],
}

style.css

Input
.button {
  background: red;

  @edgie {
    background: blue;
  }
}
Output
.button {
  background: red;
}

@supports (-ms-ime-align:auto) {
  .button {
    background: blue;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button {
    background: blue;
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i postcss-edgie

Weekly Downloads

0

Version

1.0.4

License

ISC

Unpacked Size

1.95 kB

Total Files

3

Last publish

Collaborators

  • garand