oyejorge / less.php

less.js ported to PHP.
http://lessphp.typesettercms.com
Apache License 2.0
657 stars 2 forks source link

@supports CSS Feature Queries not working #363

Open sanderjongsma opened 6 years ago

sanderjongsma commented 6 years ago

When trying to use @supports, the output is nothing. For example:

@supports (display: grid) { // code that will only run if CSS Grid is supported by the browser display: grid; } The output is simply null.

I'm guessing it's trying to treat @supports as a variable instead of literally, like @media.