All Projects → yisibl → Postcss Unprefix

yisibl / Postcss Unprefix

Licence: mit
PostCSS CSS unprefix

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Postcss Unprefix

React Ssr Setup
React Starter Project with Webpack 4, Babel 7, TypeScript, CSS Modules, Server Side Rendering, i18n and some more niceties
Stars: ✭ 678 (+4420%)
Mutual labels:  postcss
Postcss Start To End
PostCSS plugin that lets you control your layout (LTR or RTL) through logical rather than physical rules
Stars: ✭ 18 (+20%)
Mutual labels:  postcss
Postcss Interpolate
PostCSS plugin for values interpolation between breakpoints.
Stars: ✭ 9 (-40%)
Mutual labels:  postcss
Postcss
Transforming styles with JS plugins
Stars: ✭ 25,612 (+170646.67%)
Mutual labels:  postcss
Universal React Base
[OUTDATED] Super basic example to get you started with Universal (😦) React/Redux (+ API requests). Lightweight and straightforward.
Stars: ✭ 6 (-60%)
Mutual labels:  postcss
Stencil Postcss
Autoprefixer plugin for Stencil
Stars: ✭ 19 (+26.67%)
Mutual labels:  postcss
Gulp Autoprefixer
Prefix CSS
Stars: ✭ 676 (+4406.67%)
Mutual labels:  postcss
Postcss Banner
PostCSS plugin to add text banner and footer to resulting file
Stars: ✭ 13 (-13.33%)
Mutual labels:  postcss
Mdl Skeleton
Material Design skeleton with ssr-engine
Stars: ✭ 17 (+13.33%)
Mutual labels:  postcss
Concise.css
A CSS framework that's lightweight and easy-to-use. Give up the bloat. Stop tripping over your classes. Be Concise.
Stars: ✭ 941 (+6173.33%)
Mutual labels:  postcss
Turretcss
Turret is a styles and browser behaviour normalisation framework for rapid development of responsive and accessible websites.
Stars: ✭ 729 (+4760%)
Mutual labels:  postcss
Gulp Postcss
Pipe CSS through PostCSS processors with a single parse
Stars: ✭ 749 (+4893.33%)
Mutual labels:  postcss
Gatsby Starter Alchemy
A Gatsby starter with PostCSS powers ✨🔮
Stars: ✭ 23 (+53.33%)
Mutual labels:  postcss
Postcss Easing Gradients
PostCSS plugin to create smooth linear-gradients that approximate easing functions.
Stars: ✭ 689 (+4493.33%)
Mutual labels:  postcss
React Postcss
Simple style tag for React
Stars: ✭ 9 (-40%)
Mutual labels:  postcss
Awesome Tailwindcss
😎 Awesome things related to Tailwind CSS
Stars: ✭ 7,791 (+51840%)
Mutual labels:  postcss
Postcss Variables Loader
Share variables between CSS and JS with Webpack + HMR
Stars: ✭ 18 (+20%)
Mutual labels:  postcss
Astral
⊙ CSS franken-work ⊙
Stars: ✭ 14 (-6.67%)
Mutual labels:  postcss
Grunt Csswring
DEPRECATED. Minify CSS files using PostCSS-based CSSWring
Stars: ✭ 12 (-20%)
Mutual labels:  postcss
Postcss Position
PostCSS plugin that adds shorthand declarations for position attributes
Stars: ✭ 26 (+73.33%)
Mutual labels:  postcss

PostCSS Unprefix

TODO

http://blogs.msdn.com/b/ie/archive/2014/07/31/the-mobile-web-should-just-work-for-everyone.aspx http://www.ghacks.net/2015/05/09/mozilla-adds-webkit-prefix-emulation-to-select-sites-in-firefox/

Gif Deom

Input

.foo {
  -webkit-transition: padding .5s;
  -moz-transition: padding .5s;
}

Output

.foo {
  -webkit-transition: padding .5s;
  -moz-transition: padding .5s;
  transition: padding .5s;
}

Test

npm install
npm test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].