dmarchena / postcss-shorthand-to-background-color

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

postcss-shorthand-to-background-color Build Status

PostCSS plugin to avoid using background shorthand to set the background-color only.

.foo {
  /* Input example */
  background: #fff;
}
.foo {
  /* Output example */
  background-color: #fff;
}

About

License:MIT License


Languages

Language:JavaScript 100.0%