Reputation: 935
Is there any converters (similar to Babel convert ES6 to older ES versions) that can convert CSS3 (e.g. grid, attribute selectors) to older versions of CSS so that development efficiency won't be sacrificed to trade for browser compatibility?
Upvotes: 4
Views: 2554
Reputation: 114
No, because that would require a tool to understand your design intent and then fix it. If it was so easy to create cross browser compatible css by just using a magic tool we would all be using it. Usually I see this done the other way around. Get it to work in all browsers and then hack in fixes for older browsers.
Upvotes: 1