Forgive me for asking what may seem like a basic question, but I'm struggling to understand something,
I have been given design specifications with the following widths:
S- 320px M - 768px L - 992px XL - 1920px
However, the media queries being used are as follows:
@media (min-width: 576px)
@media (min-width: 768px)
@media (min-width: 992px)
@media (min-width: 1200px)
I'm having trouble matching the designs to the appropriate media queries. Am I overlooking something very simple and obvious?
I apologize if that's the case!!
Thank you in advance,