Skip to content

Instantly share code, notes, and snippets.

@chrisirhc
Last active January 31, 2016 09:42
Show Gist options
  • Save chrisirhc/7b5df4f67b27355a774d to your computer and use it in GitHub Desktop.
Save chrisirhc/7b5df4f67b27355a774d to your computer and use it in GitHub Desktop.
CSS Technique: Block container demo code
<div class="box">
<span class="t box-inner">div + span</span>
</div>
.box {
background: #eee;
border-radius: 4px;
padding: 5px;
white-space: nowrap;
}
.box-inner {
display: inline-block;
background: #eee;
border-radius: 4px;
margin: -5px;
padding: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment