Skip to content

Instantly share code, notes, and snippets.

@junyong
Created May 22, 2013 02:29
Show Gist options
  • Save junyong/5624867 to your computer and use it in GitHub Desktop.
Save junyong/5624867 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ko">
<head>
<title>responsive web design</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
@media screen and (max-width: 640px) {
html { background: red; }
}
@media screen and (min-width: 641px) and (max-width: 1023px) {
html { background: green; }
}
@media screen and (min-width: 1024px) {
html { background: blue; }
}
</style>
</head>
<body>
<h1>Hello</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment