OK, I give up. Why doesn't this work?
@supports (order: sibling-count()) ){
--sibling: 'sibling-count'
}
@supports not (order: sibling-count()) ){
--sibling: 'NOT sibling-count'
}
/* later */
content: 'Browser supports: ' var(--sibling,' no sibling data ');
In both browsers I care about, Firefox and Safari/iOS, I get 'no sibling data' as if the browsers read neither @supports. What's going on?