-
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
var-statements inside calc(..) fail #57
Comments
@lglowania I could successfully parse it with version 6.2.0. |
I was using 6.1 which aborted parsing. I upgraded to 6.2 which tolerates such a statement, but it seems to just skip until closing brace:
|
This is the full css-block: .pageColumn > .center:before{
content: '';
position: absolute;
left: calc(50% - (600px / 2 + var(--page-column-padding-x)));
width: calc(600px + 2 * var(--page-column-padding-x));
/* if inside a small contaier e.g. a card, do not exceed width */
max-width: 100%;
background: white;
top: 0;
min-height: 100%;
flex: 1;
bottom: 0px;
z-index: 0;
} |
It's a operator precendence issue... weird |
The problem was caused by supporting an old IE6 hack that allowed for |
Great! Thank you 👍 |
Part of 6.2.1 release |
Failing line is:
The text was updated successfully, but these errors were encountered: