So I am working on my first "respoonsive" website which makes extensive use of media queries. I was wondering if there are some common page-widths I should optimize for.
I will probably have a maximum width (not going full fluid) I am thinking I'll have maybe 3-5 set widths with fun little css3 transitions between them (similar to how http://css-tricks.com works).
Currently the numbers I am using are somewhat arbitrary:
@media all and (max-width: 599px){...}
@media all and (min-width: 600px) and (max-width:799px){...}
@media all and (min-width: 800px) and (max-width:1024px){...}
@media all and (min-width: 700px) and (max-width: 1024px){...}
@media all and (min-width: 1025px) and (max-width: 1399px){...}
@media all and (min-width: 1400px){...}
Are there any good resources out there with reccomendations (or tutorials)? I think I saw a css framework at some point which had some of this stuff built in but cannot remember which one.
Also, I think I have read that some mobile devices don't behave as expected (with @media). Where does this come into play and how should I deal with these situations.