I’ve just download 320 and up for responsive design, the stylesheets are divided as follows:
- 480.css
- 600.css
- 768.css
- 992.css
- 1382.css
And print.css, style.css and 2x.css
I don’t understand why isn’t a 320.css stylesheet, or I should use style.css for that resolution?
Nope, you’re right. Anything that’s LESS THAN 480px will load the
styles.cssfor these media queries, courtesy of themin-widthsettings on the media queries:So with the device widths, the designs for 0 – 480px (including 320px) will go in
style.css480 to 600 =
480.css600 to 768 =
600.css768 to 992 =
768.css992+ =
992.cssBut if you want to have more fine-grain controls over the 320 resolution you can add another media query:
<link rel="stylesheet" media="only screen and (min-width: 320px)" href="css/320.css">and then create the
320.cssstylesheet in the css directory. This sheet will be good for resolutions 320 – 480. Which means that now anything less than 320 will loadstyle.css.I think the idea of leaving that resolution out is that you’d create some a fluid or flexible layout that would work for both resolutions…