postcss-border-spread

PostCSS plugin that spread border styles.

Usage no npm install needed!

<script type="module">
  import postcssBorderSpread from 'https://cdn.skypack.dev/postcss-border-spread';
</script>

README

PostCSS Border Spread Build Status

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.