php-autoprefixer
php-autoprefixer copied to clipboard
CSS autoprefixer written in pure PHP
when there are expressions like `background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;` or `color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;` then it will complete delete them
I see that you remove zero `(0)` when it's in expression `0.5px` or `calc(-0.5em + 10%)` etc. which is great and I really love it as it makes final CSS...
Hi everyone, it might be useful to add support for new viewport units (svh, lvh, svw, lvw, dvh, dvw). https://redstapler.co/all-css-viewport-units-svh-lvh-svw-lvw-dvh-dvw-explained/ Right now a css rule: ``` body{ height: calc(100svh -...