postcss-line-height-px-to-unitless

0.2.1 • Public • Published

postcss-line-height-px-to-unitless

npm version travis dependencies devDependencies License

Postcss plugin to convert a line-height value with px to a unitless value.

// before
 
a {
  font-size: 16px;
  line-height: 26px;
}
 
 
 
// after
 
a {
  font-size: 16px;
  line-height: 1.63;
}
 

Install

$ npm i postcss-line-height-px-to-unitless

Usage

postcss([
    require('postcss-line-height-px-to-unitless')(),
    ...
])

License

MIT

Package Sidebar

Install

npm i postcss-line-height-px-to-unitless

Weekly Downloads

64

Version

0.2.1

License

MIT

Last publish

Collaborators

  • makotot