I would like to serve a certain portion of CSS to browsers that support "display: grid", but are not IE/MS Edge. How do you mix positive and negative @support queries?
Can you write 'and not' or is there a similar notation? Unfortunately the following will not work.
@supports not (-ms-ime-align:auto) and (display: grid) {
display: none;
}