CSS| CSS Responsive Design and Media Queries | 5

Last Updated :
Discuss
Comments

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) { ... }

Share your thoughts in the comments