When you are developing, it would be nice to have a mode where you only get the vanilla css properties instead of all the -webkit, -moz -yada so you can more easily toggle the property's state.
Example:
.flex(1) produces
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
It would be nice if you only got:
When you are developing, it would be nice to have a mode where you only get the vanilla css properties instead of all the
-webkit,-moz-yadaso you can more easily toggle the property's state.Example:
.flex(1)producesIt would be nice if you only got: