You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 4 years ago | |
|---|---|---|
| .. | ||
| node_modules | 4 years ago | |
| CHANGELOG.md | 4 years ago | |
| LICENSE.md | 4 years ago | |
| README.md | 4 years ago | |
| index.cjs.js | 4 years ago | |
| package.json | 4 years ago | |
		
			
				
				README.md
			
		
		
	
	PostCSS Nesting 
PostCSS Nesting lets you nest style rules inside each other, following the CSS Nesting specification.
a, b {
  color: red;
  & c, & d {
    color: white;
  }
}
/* becomes */
a, b {
  color: red;
}
a c, a d, b c, b d {
  color: white;
}
NOTICE: In a future version of this project, nesting at-rules like @media
may be deprecated, as they are not part of the nesting proposal. In a comment,
a CSSWG member expressed interest in handling nested @media while handling
selector nesting. So deprecating nested at-rules has been temporarily delayed.
Usage
Add PostCSS Nesting to your project:
npm install postcss-nesting --save-dev
Use PostCSS Nesting to process your CSS:
import postcssNesting from 'postcss-nesting';
postcssNesting.process(YOUR_CSS /*, processOptions, pluginOptions */);
Or use it as a PostCSS plugin:
import postcss from 'postcss';
import postcssNesting from 'postcss-nesting';
postcss([
  postcssNesting(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
PostCSS Nesting runs in all Node environments, with special instructions for:
| Node | Webpack | Create React App | Gulp | Grunt | 
|---|