1.0.0 • Published 8 years ago

postcss-closest v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

postcss-closest

PostCSS plugin to modify closest matching part of current selector

/* Input example */
html > body p:closest(body with .index, html with .js)
{
	...
}
/* Output example */
html.js > body.index p
{
	...
}

Install

npm install --save-dev postcss-closest

Usage

postcss( [ require( 'postcss-closest' ) ] )