-
Notifications
You must be signed in to change notification settings - Fork 24
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
*IDENT (<=IE6 hack) in style declaration block, drops all declarations after this one (in browser compliant mode) #84
Comments
This would be my approach/proposal to fix this issue: |
In the PR you are throwin a |
For the input CSS div {
max-width: 100px;
*zoom: 1;
position: relative;
} in browser compliant mode I would expect this as an output: div {
max-width: 100px;
position: relative;
} in non-browser compliant mode I would expect this as an output: div {
max-width: 100px;
} |
Yeees. It should drop that particular property in browser compliant mode (which should be achieved by the catch clause in the And then it should, depending on the mode, result on what you described in the next post. |
Stupid one - please confirm. If so, I will release |
Sorry for answering late.... |
Part of 6.5.0 release that I will be creating now |
There're still CSS out there using/supporting this "hack". Dropping this specific declaration is perfectly fine, but unfortunately the rest after this declaration is also dropped (in browers compliant mode)
The text was updated successfully, but these errors were encountered: