I am trying to use CSS variables in media query and it does not work.

:root {
  --mobile-breakpoint: 642px;
}

@media (max-width: var(--mobile-breakpoint)) {

}

9 Answers
9

Leave a Reply

Your email address will not be published. Required fields are marked *