postcss-border-spread
v0.0.5
Published
PostCSS plugin that spread border styles.
Downloads
0
Maintainers
Readme
PostCSS Border Spread
PostCSS plugin that spread border styles.
/* Input example */
.foo {
border: solid 1px #ccc;
}
/* Output example */
.foo {
border-width: 1px;
border-style: solid;
border-color: #ccc;
}
Usage
postcss([ require('postcss-border-spread') ])
See PostCSS docs for examples for your environment.