Skip to content

garand/postcss-edgie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation


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;
  }
}

About

PostCSS Plugin to easily target Edge and IE

Resources

Stars

Watchers

Forks

Packages

No packages published