@sandr15Submitted 12 months ago
I'm not entirely sure that I used media-queries correctly. I used min-width: 375
to trigger CSS rules for the mobile layout, and max-width: 376
for the desktop layout. Do I really need to specify both min-width
and max-width
? I feel like I should be able to specify just one of the two. Additionally, most of the CSS is outside of the media queries, just the CSS needed to update the layout is in the media query blocks. Is this the proper way to use media queries?