Convert unit in css code based on css parser / stringifier
Supports
npm i css-convert
import { px2rem } from 'css-convert';
const result = px2rem('body { width: 750px }', { remValue: 37.5, compress: true });
Mobile
If follow the convention
rem = window.innerWidth / 10
And If screen width is 750px
, then 1rem = 75px
and remValue is 75
.
Desktop
If
then 1rem = 16px
and remValue is 16
.