-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS vendor prefixing #89
Comments
this shouldn't be too hard w/ stylis. Take a look at the source for cxs.
In the style of cxs, if vendor prefixing is something you need, I propose you create a PR that creates another file called "prefixed" so people can In that, copy over the logic from index.js and change rx to something like
not sure how to handle the dependency... |
You could also write your own fork of cxs 👍 |
An elegant option is suggested here: https://github.com/I-We/cxs#vendor-prefixes Haven't tested it though, but if it works |
Thanks for that. |
Hello,
As far as I know
cxs
doesn't support vendor prefixing. When you use "advanced" CSS features this can become a problem for any older browser.I was wondering if there was a plan to add support for that (increasing the library size) or if there was a way to maybe post-process the CSS generated by
cxs
.In that category I was looking at
stylis
thatstyled-jsx
uses: it is very fast and does prefixing among a few other things. But integration is likely big changes.If you know of any solution or workaround to use on top of
cxs
that we could use today, that would be helpful.The text was updated successfully, but these errors were encountered: