How do you apply styles only for screens wider than 600px using media queries?
@media screen and (min-width: 600px) { ... }
@media screen (max-width: 600px) { ... }
@media width: 600px { ... }
@media (min-width: 600px) { ... }
This question is part of this quiz :
CSS Responsive Design and Media Queries Quiz