UNPKG

postcss-px-to-relative-unit

Version:

A postcss plugin to convert px to relative length units (vw / rem)

13 lines 294 B
.test { display: block; width: 0.1rem; width: 1vw; height: calc(100% - 0.4rem); height: calc(100% - 4vw); border: .5px; border-width: 0.1rem; border-width: 1vw; transform: translate3d(.75px, 0.36667rem, 0.1rem); transform: translate3d(.75px, 3.66667vw, 1vw); color: red; }