-
Notifications
You must be signed in to change notification settings - Fork 4
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
If IE8 only, why not using -ms-filter than? #2
Comments
Not IE8 only, but IE8- (even if IE9 will also understand it). Maybe we should add an option for IE7 to get
What do you mean ? |
@iamvdo Actually, just because it's in MDN, it doesn't mean, it's solid gold ;) The sense in using the So if you're going for an option, an option for IE8 only usage or IE8/IE7 mixed usage or IE8 and all lower would be the right approach IMHO. I see the real sense here in flexibility in output and mostly for devs, who still wanna support IE8. |
Same goes for CSS Tricks. ;)
It's the opposite, right ? Using prefixes make stylesheets invalid. BTW, I've to admit I don't know what to do: The simplest thing is maybe to use /cc @7studio (Ref: iamvdo/pleeease#16) |
No, vendor-prefixed properties are specified in CSS 2.1. And yes, your suggestion would be a great default output. :) |
Hi, Take the example below: /* in.css */
img {
filter: invert(100%);
opacity: .5;
}
/* out.css (with postcss-opacity) */
img {
filter: invert(100%);
opacity: .5;
filter: alpha(opacity=50);
} While someone identifies the second In fact, the syntax IMHO, we should use
BTW, the plugin should not care about IE versions lower than 8 ^^ |
Would help validation of the output stylesheet! See for example: http://css-tricks.com/css-transparency-settings-for-all-broswers/
The text was updated successfully, but these errors were encountered: