Skip to content
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

Support for @supports #220

Closed
callumacrae opened this issue Mar 18, 2014 · 5 comments
Closed

Support for @supports #220

callumacrae opened this issue Mar 18, 2014 · 5 comments

Comments

@callumacrae
Copy link

section {
    float: left;
}

@supports (display: flex) {
    section {
        display: flex;
        float: none;
    }
}

(code modified from David Walsh's article)

While autoprefixer adds properties to the section element, it doesn't touch the text inside the @​supports. I would expect it to replace (display: flex) with (display: -webkit-box) or (display: -webkit-flex) or (display: -ms-flexbox) or (display: flex).

Specification here

@ai
Copy link
Member

ai commented Mar 18, 2014

Double of #150

@ai ai closed this as completed Mar 18, 2014
@callumacrae
Copy link
Author

I blame GitHub search: sorry!

@ai
Copy link
Member

ai commented Jun 22, 2014

Done. It will be released with Autoprefixer 2.0

@callumacrae
Copy link
Author

👍

Thanks!

On 22 Jun 2014, at 11:21, Andrey Sitnik notifications@github.com wrote:

Done. It will be released with Autoprefixer 2.0


Reply to this email directly or view it on GitHub.

@ai
Copy link
Member

ai commented Jun 24, 2014

Released in Autoprefixer 2.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants