Skip to content

Instantly share code, notes, and snippets.

@ds729
Created April 17, 2012 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ds729/2405112 to your computer and use it in GitHub Desktop.
Save ds729/2405112 to your computer and use it in GitHub Desktop.
CSS3メディアクエリサンプル
@media screen and (max-width: 480px){ /* 画面が480pxの場合 */
body{ background: #80D0FF }
}
@media screen and (max-width: 320px){ /* 画面が320pxの場合 */
body{ background: #FFDBF3 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment