MCQ
Which of the following is a correct syntax for a media query?
Responsive Web Design
A @media screen and (max-width: 768px)
B @media (screen: max-width 768px)
C @media screen max-width: 768px
D @media max-width: 768px screen
Explanation

The correct syntax is @media screen and (max-width: 768px) { ... } with the condition in parentheses.