Skip to content

Instantly share code, notes, and snippets.

@ciryon
Created February 1, 2011 09:13
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 ciryon/805621 to your computer and use it in GitHub Desktop.
Save ciryon/805621 to your computer and use it in GitHub Desktop.
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<style type="text/css" media="screen">
/* portrait mode */
@media screen and (max-width: 320px) {
#rotateme {
background-color: #ff2900;
width: 100px;
height: 200px;
border: 2px solid #000;
}
}
@media screen and (min-width: 321px) {
#rotateme {
background-color: #1633fc;
width: 200px;
height: 100px;
border: 2px solid #000;
}
}
</style>
</head>
<body>
<div id="rotateme" />
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment