postcss plugin to convert a line-height value with px to a unitless value
npm install postcss-line-height-px-to-unitless




> Postcss plugin to convert a line-height value with px to a unitless value.
``css
// before
a {
font-size: 16px;
line-height: 26px;
}
// after
a {
font-size: 16px;
line-height: 1.63;
}
`
`sh`
$ npm i postcss-line-height-px-to-unitless
`js``
postcss([
require('postcss-line-height-px-to-unitless')(),
...
])
MIT