주어진 하나 이상의 css 기능을 브라우저가 지원하는지 여부에 따라 다른 스타일 선언을 할 수 있음. (기능 쿼리 - feature query) 지원 조건은 하나 이상의 키:값을 and, or, not으로 연결해 구성하며, 괄호로 묶어 우선순위를 지정할 수 있음. 선언 구문 @supports (transform-origin: 5% 5%) {} @supports not (transform-origin: 10em 10em 10em) {} @supports (display:grid) and (not(display:inline-grid)) {} @supports (display:table-cell) and ((display:list-item) and (display:run-in)) {} @supports (tr..