Skip to content

Instantly share code, notes, and snippets.

@edtoken
Created September 25, 2014 12:02
Show Gist options
  • Select an option

  • Save edtoken/03e30ba09596036371e4 to your computer and use it in GitHub Desktop.

Select an option

Save edtoken/03e30ba09596036371e4 to your computer and use it in GitHub Desktop.
media css
/**
* media height
*/
@media (max-height:320px){
}
@media (min-height: 480px) {
}
@media (min-height: 600px) {
}
@media (min-height: 768px) {
}
@media (min-height: 800px) {
}
@media (min-height: 1024px) {
}
/**
* media width
*/
@media (max-width: 480px) {
}
@media (min-width: 480px) and (max-width: 768px) {
}
@media (max-width: 768px) {
}
@media (min-width: 767px) and (max-width: 992px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) and (max-width: 1200px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment