1.0.3 • Published 8 years ago

postcss-responsive-images v1.0.3

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

postcss-responsive-images

Build Status NPM version Dependency Status

PostCSS plugin for making responsive images.

Install

With npm do:

npm install postcss-responsive-images --save

Example

Input

.boo img {
  image-size: responsive;
}

Output

.boo img {
  max-width:100%;
  height:auto;
  display:block;
}

License

MIT