You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

postcss-flexbugs-fixes

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-flexbugs-fixes

PostCSS plugin This project tries to fix all of flexbug's issues


Version published
Weekly downloads
5.4M
decreased by-1.16%
Maintainers
1
Install size
9.18 kB
Created
Weekly downloads
 

Package description

What is postcss-flexbugs-fixes?

The postcss-flexbugs-fixes package is a PostCSS plugin that attempts to fix known flexbox issues in different browsers. It provides a set of workarounds for various flexbox bugs, making it easier to ensure consistent behavior across different environments.

What are postcss-flexbugs-fixes's main functionalities?

Fixing flexbox bugs

This feature automatically applies fixes for known flexbox bugs. By including the plugin in your PostCSS configuration, it will process your CSS and apply necessary workarounds to ensure consistent flexbox behavior across different browsers.

module.exports = {
  plugins: [
    require('postcss-flexbugs-fixes')
  ]
};

Integration with PostCSS

This feature demonstrates how to integrate postcss-flexbugs-fixes with PostCSS programmatically. It shows how to use the plugin within a PostCSS processing pipeline to apply flexbox bug fixes to your CSS.

const postcss = require('postcss');
const flexbugsFixes = require('postcss-flexbugs-fixes');

postcss([flexbugsFixes])
  .process(css, { from: undefined })
  .then(result => {
    console.log(result.css);
  });

Other packages similar to postcss-flexbugs-fixes

Changelog

Source

5.0.2

  • Moving postcss to peer dependencies #74

Readme

Source

PostCSS Flexbugs Fixes Build Status

PostCSS plugin This project tries to fix all of flexbug's issues.

bug 4

Input

.foo { flex: 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1 0; }
.baz { flex: 1 1 0px; }

Output

.foo { flex: 1 1; }
.bar { flex: 1 1; }
.foz { flex: 1 1; }
.baz { flex: 1 1; }

bug 6

Input

.foo { flex: 1; }

Output

.foo { flex: 1 1 0%; }

This only fixes css classes that have the flex property set. To fix elements that are contained inside a flexbox container, use this global rule:

* {
    flex-shrink: 1;
}

bug 8.1.a

Input

.foo { flex: 1 0 calc(1vw - 1px); }

Output

.foo {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: calc(1vw - 1px);
}

Usage

postcss([require('postcss-flexbugs-fixes')]);

You can also disable bugs individually, possible keys bug4, bug6 and bug8a.

var plugin = require('postcss-flexbugs-fixes');
postcss([plugin({ bug6: false })]);

See PostCSS docs for examples for your environment.

Keywords

FAQs

Package last updated on 20 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc