Skip to content

Instantly share code, notes, and snippets.

@kimisme9386
Last active October 4, 2015 06:41
Show Gist options
  • Save kimisme9386/5b189344e08b5264ac99 to your computer and use it in GitHub Desktop.
Save kimisme9386/5b189344e08b5264ac99 to your computer and use it in GitHub Desktop.
css media query range
@Media (min-width: 1200px) {
}
@Media (min-width: 980px) and (max-width: 1199px) {
}
/* 平板電腦、橫向手機和一般桌機解析度 */
@Media (min-width: 768px) and (max-width: 979px) {
}
/* 橫向智慧手機到竪立平板電腦解析度 */
@Media (max-width: 767px) {
}
/* 橫向智慧手機及其他更小解析度 */
@Media (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment