Skip to content

Files

postcss-media-minmax

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 3, 2025
Nov 11, 2024
Aug 3, 2024
Jan 14, 2025
Mar 30, 2023
Nov 11, 2024
Feb 23, 2025
Mar 30, 2023
Mar 30, 2023
Feb 23, 2025
Dec 15, 2023
Mar 10, 2025
Mar 30, 2023

PostCSS Media MinMax PostCSS Logo

npm version Build Status Discord

Baseline Status CSS Standard Status

npm install @csstools/postcss-media-minmax --save-dev

PostCSS Media MinMax lets you use the range notation in media queries following the Media Queries 4 Specification.

@media screen and (width >=500px) and (width <=1200px) {
	.bar {
		display: block;
	}
}

/* becomes */

@media screen and (min-width:500px) and (max-width:1200px) {
	.bar {
		display: block;
	}
}

Usage

Add PostCSS Media MinMax to your project:

npm install postcss @csstools/postcss-media-minmax --save-dev

Use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssMediaMinMax = require('@csstools/postcss-media-minmax');

postcss([
	postcssMediaMinMax(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

PostCSS Media MinMax runs in all Node environments, with special instructions for:

See prior work by yisibl here postcss-media-minmax To ensure long term maintenance and to provide the needed features this plugin was recreated based on yisibl's work.