🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

postcss-fluid

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-fluid

Fluid css value

1.4.2
latest
Version published
Weekly downloads
457
15.4%
Maintainers
1
Weekly downloads
 
Created

postcss-fluid

Fluid css value

Usage:

// Add plugin to postcss config
postcss([
  // (plugins) Sass, Nesting, Imports ...

  require('postcss-fluid')({
    // Defaults:
    min: '320px', // Min media size
    max: '1200px', // Max media size
    functionName: 'fluid', // function name, may be anything
  }),

  // (optimization) autoprefixer, postcss-clean, css-mqpacker ...
]);
/* usage in css */
[selector] {
  ...
  [property]: *values* fluid([min], [max]) *values*;
  ...
}

Examples

Input

body {
  padding: 1rem fluid(10px, 20px) 2rem;
  font-size: fluid(16px, 30px);
}

Output

body {
  padding: 1rem calc(10px + 10 * (100vw - 320px) / 880) 2rem;
  font-size: calc(16px + 14 * (100vw - 320px) / 880);
}

@media (max-width: 320px) {
  body {
    padding: 1rem 10px 2rem;
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  body {
    padding: 1rem 20px 2rem;
    font-size: 30px;
  }
}

FAQs

Package last updated on 11 Oct 2021

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