Socket
Socket
Sign inDemoInstall

postcss-preset-env

Package Overview
Dependencies
Maintainers
2
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-preset-env

Convert modern CSS into something browsers understand


Version published
Weekly downloads
5.7M
increased by3.81%
Maintainers
2
Weekly downloads
 
Created

What is postcss-preset-env?

The postcss-preset-env package is a plugin for PostCSS, a tool for transforming CSS with JavaScript. This package allows developers to use future CSS features today. It converts modern CSS into something most browsers can understand, determining the polyfills needed based on the target browsers or runtime environments specified by the developer. It's like Babel but for CSS.

What are postcss-preset-env's main functionalities?

Stage 0-4 CSS features

Enables the use of future CSS features by setting the stage from 0 to 4. Lower stages include more experimental features.

postcssPresetEnv({
  stage: 0
})

Custom Media Queries

Allows the use of custom media queries, making it easier to manage and reuse media queries.

@custom-media --small-viewport (max-width: 30em);

@media (--small-viewport) {
  /* CSS rules for small viewport */
}

Custom Properties (CSS Variables)

Facilitates the use of CSS variables for easier theme management and component styling.

:root {
  --mainColor: #123456;
}

a {
  color: var(--mainColor);
}

Nested Rules

Supports nesting rules within rules, similar to what is possible in preprocessors like SASS or LESS.

a {
  &::before {
    content: '';
  }
}

Other packages similar to postcss-preset-env

Keywords

FAQs

Package last updated on 03 Jun 2022

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc