Suppose I have the following sample code:
:fullscreen a {
display: flex;
}
Is it possible for the default sass
compiler to transform it into this:
:-webkit-full-screen a {
display: -webkit-box;
display: flex;
}
:-moz-full-screen a {
display: flex;
}
:-ms-fullscreen a {
display: -ms-flexbox;
display: flex;
}
:fullscreen a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
Instead of just providing the normal CSS non-prefixed version?
I've been relying on Autoprefixer for such tasks, but I'm curious to explore if there's a more efficient way that doesn't involve using two separate programs.