I've been working on aligning the page content for different browser sizes using CSS. However, I'm having an issue with the first @media statement - no matter what changes I make in there, it doesn't affect the layout. I've been using to check the layout, but so far, no luck.
Changing the order of the statements only makes things worse. I'm feeling a bit lost.
Your assistance would be greatly appreciated.
Thank you!
@media (min-width: 500px) and (max-width: 820px) {
CSS GOES HERE
}
@media (min-width: 830px) and (max-width: 1025px) {
CSS GOES HERE
}
@media (min-width: 1026px) and (max-width: 1580px) {
CSS GOES HERE
}
@media (min-width: 1590px) and (max-width: 2000px) {
CSS GOES HERE
}