I am fresh new to CSS in general and responsive design specially, I had an old website which i successfully redesigned with CSS and everything is fine, when trying to make it responsive i just discovered media queries and i started with restyling the footer using :
@media screen and (max-width:720px){ etc ...}
That works ok and my footer is restyling well, my question is : This looks fine in my mobile which is 720px width, but in the case of a mobile with for example 1080px width it will show the desktop version ? how to avoid that ? I mean if i try with :
@media screen and (max-width:1280px){ etc ...}
To include high resolution mobiles, it will show the mobile version on desktop screen that are 1280px width ? What is the correct usage, ? Thanks