0.3.0 • Published 9 years ago

postcss-pseudo-content-insert v0.3.0

Weekly downloads
83
License
MIT
Repository
github
Last release
9 years ago

PostCSS Pseudo Content Insert Build Status

PostCSS plugin inserts an empty content block into your :before and :after pseudo elements if it is missing.

Shout-out to omgovich with his postcss plugin, for inspiration and guidance.

.foo:after {
	content: '';
	display: block;
}
.foo:before {
	display: inline-block;
}
.foo:after {
	content: '';
	display: block;
}
.foo:before {
	display: inline-block;
    content: '';
}

Usage

postcss([ require('postcss-pseudo-content-insert') ])

See PostCSS docs for examples for your environment.