Skip to content

Instantly share code, notes, and snippets.

@DESIGNfromWITHIN
Created October 29, 2012 10:09
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 DESIGNfromWITHIN/3972737 to your computer and use it in GitHub Desktop.
Save DESIGNfromWITHIN/3972737 to your computer and use it in GitHub Desktop.
A CodePen by Menno Pietersen.
<div id="responsive_div">
<h1>This is a responsive div</h1>
</div>
#responsive_div {
background: red;
}
@media only screen and (max-width: 940px) {
#responsive_div {
background: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment