Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Created January 11, 2014 22:20
Show Gist options
  • Save yoshuawuyts/8377758 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/8377758 to your computer and use it in GitHub Desktop.
body {
box-sizing: border-box;
margin: -3;
}
.one {
height: 20%;
width: 25%;
background-color: #eee;
display: inline-block;
}
.two {
height: 20%;
width: 50%;
background-color: #bbb;
display: inline-block;
}
.three {
height: 20%;
width: 75%;
background-color: #ccc;
}
.four {
height: 20%;
width: 100%;
background-color: #bcb;
}
@media all and (max-width: 700px) {
.one {
width: 100%;
margin: -3px;
}
.two {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment