Skip to content

Instantly share code, notes, and snippets.

@edtoken
Created October 8, 2014 20:30
Show Gist options
  • Select an option

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

Select an option

Save edtoken/c185a74c5b8a4cd7fdb4 to your computer and use it in GitHub Desktop.
media
/**
* media height
*/
@media (max-height:320px){
}
@media (min-height: 480px) {
}
@media (max-height: 600px) {
}
@media (min-height: 600px) {
}
@media (min-height: 768px) {
}
@media (min-height: 800px) {
}
@media (min-height: 1024px) {
}
/**
* media width
*/
@media (max-width: 768px) {
}
@media (max-width: 480px) {
}
@media (min-width: 480px) and (max-width: 768px) {
}
@media (min-width: 320px) and (max-width: 992px) {
}
@media (min-width: 767px) and (max-width: 992px) {
}
@media (min-width: 768px) and(min-height:650px){
}
@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