Hello;
I want to redesign a site for responsive and have 2 questions:
1-What is the standard size (min-max) for mobile,tablet,and desktop?please write the @media query for each one,my mean is only determine min and max for each device that cover also the
landscape
and
portrait
for mobile.
2-For a website with medium size (php+mysql) that we want be responsive is it better that for each device we create one css file so 3 css files for website or one css file is ok that we put all 3 @media queries in that?
Thanks
Here are the breakpoints that Bootstrap uses:
< 768 extra small
>= 768 small
>= 992 medium
>= 1200 large
http://getbootstrap.com/css/ shows the media queries.
And yes, you can put them all into one style sheet.
You can of course change these if you have a specific application.