I am modifying someone else's css, and I am trying to make the page responsive with the @media request. I implemented:
@media screen and (max-width: 1300px), screen and (max-width: 1024px) {} @media only screen and (max-width: 860px) {}
which works fine, but when I implement @media screen and (max-width: 600px) {} it looks like it doesn't work.
OR - on chrome and opera, it seems to work fine, but not on FF: on FF, the page is cut out at the right end, without a scroller, and I really don't know why. It does not change, even if I use positon: relative, I check - I do not have any "overflow: hidden".
And another thing - it is proposed to use min-width for the media process, but if I use min-width, then only the lowest one is used (for example, min-width: 600).
I think I missed something ... any suggestions? I would really appreciate them ... since I am very interested in responsive web design.
source share