All Projects → 7rulnik → Postcss Flexibility

7rulnik / Postcss Flexibility

Licence: mit
PostCSS plugin for Flexibility polyfill

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Postcss Flexibility

Mobi.css
A lightweight, scalable, mobile-first CSS framework
Stars: ✭ 2,348 (+672.37%)
Mutual labels:  postcss, flexbox
fortune
🔮Fortune is your friendly CSS properties framework.
Stars: ✭ 16 (-94.74%)
Mutual labels:  postcss, flexbox
tailwind-bootstrap-grid
Tailwind CSS plugin that generates Bootstrap's flexbox grid
Stars: ✭ 96 (-68.42%)
Mutual labels:  postcss, flexbox
postcss-momentum-scrolling
PostCSS plugin add 'momentum' style scrolling behavior (-webkit-overflow-scrolling: touch) for elements with overflow (scroll, auto) on iOS
Stars: ✭ 69 (-77.3%)
Mutual labels:  postcss
Shopify Theme Lab
Shopify theme development environment using Liquid, Vue and Tailwind CSS 🧪
Stars: ✭ 250 (-17.76%)
Mutual labels:  postcss
Poststylus
PostCSS adapter for Stylus
Stars: ✭ 279 (-8.22%)
Mutual labels:  postcss
Front End
Operation Code's website
Stars: ✭ 301 (-0.99%)
Mutual labels:  postcss
gutter-grid
A Sass flexbox based grid system that is able to replicate CSS grid-gap in IE11
Stars: ✭ 18 (-94.08%)
Mutual labels:  flexbox
Ink
🌈 React for interactive command-line apps
Stars: ✭ 17,505 (+5658.22%)
Mutual labels:  flexbox
Layout Demo
Various Layouts Of CSS
Stars: ✭ 264 (-13.16%)
Mutual labels:  flexbox
Bulma Helpers
Library with missing Functional / Atomic CSS classes for Bulma framework
Stars: ✭ 263 (-13.49%)
Mutual labels:  flexbox
Bulma Templates
free flexbox templates built with the bulma css framework
Stars: ✭ 2,916 (+859.21%)
Mutual labels:  flexbox
Vueblog
Stars: ✭ 285 (-6.25%)
Mutual labels:  flexbox
zeus
A novel mobile first flexbox BEM css grid.
Stars: ✭ 14 (-95.39%)
Mutual labels:  flexbox
Flexbox Layout
Flexbox for Android
Stars: ✭ 17,175 (+5549.67%)
Mutual labels:  flexbox
edgestack
[UNMAINTAINED] A Universal React Stack with deeply integrated localization Support, semi-automatic route-based code splitting, Hot Module Reloading (HMR), Redux, Apollo GraphQL and more...
Stars: ✭ 77 (-74.67%)
Mutual labels:  postcss
Webpack Blocks
📦 Configure webpack using functional feature blocks.
Stars: ✭ 2,992 (+884.21%)
Mutual labels:  postcss
Myflix
Myflix, a Netflix clone!
Stars: ✭ 260 (-14.47%)
Mutual labels:  flexbox
Lyrics King React Native
Lyrics King is React Native song lyrics search app, built with Expo. Designed with Adobe XD.
Stars: ✭ 261 (-14.14%)
Mutual labels:  flexbox
React Flexview
A powerful React component to abstract over flexbox and create any layout on any browser
Stars: ✭ 276 (-9.21%)
Mutual labels:  flexbox

PostCSS Flexibility

NPM version Build Status Dependency Status devDependency Status Coverage Status XO code style

PostCSS plugin for Flexibility.

.foo {
    display: flex;
}

will be processed to:

.foo {
    -js-display: flex;
    display: flex;
}

Installation

$ npm install --save-dev postcss postcss-flexibility

Usage

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

See PostCSS docs for examples for your environment.

Excluding rules

You can exclude rule from transformation by adding /* flexibility-disable */ comment.

.foo {
    /* flexibility-disable */
    display: flex;
}

will be processed to:

.foo {
    /* flexibility-disable */
    display: flex;
}

License

MIT © Valentin Semirulnik

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].