Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 392 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 392 Bytes

Compare CSS Preprocessors

  • Vanilla CSS
  • LESS
  • SASS
  • PostCSS - CSSNext

Installing postcss

npm install -g postcss

Transpiling .pcss to .css

postcss style.pcss [--use library] -o style.css

for our example, we're using CSSNext

installing npm install -g postcss-cssnext

Transpiling .pcss to .css

postcss style.pcss --use postcss-cssnext -o style.css