-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Parse error on new CSS grid property #3092
Comments
Not a surprise since this introduces a new grammar Less has no clue about. I'm adding "feature request" and "ready for implementation" labels with the following remark though:
(For example see #2623) |
CSS Grid is getting implemented un-prefixed in every major browser pretty much now. Support should be implemented. http://caniuse.com/#feat=css-grid |
…13 behaviours * Grid syntax (less/less.js#3092) * Escapes in keywords (less/less.js#3268) Bug: T288498 Change-Id: I3867cee77ad2a69ecb8e4f850fa5c548e3520b40
The parser seems to not like when an area label comes before a css method like minmax.
grid-template-columns: [full-start] 1fr [content] minmax(100%, 1000px) 1fr [full-end];
The above is the example in my code. It is correct formatting for the new CSS Grid feature. Excluding it using
~" ... "
causes the page to work. I just figured this shouldn't be necessary.The text was updated successfully, but these errors were encountered: