Last active
January 31, 2016 09:42
-
-
Save chrisirhc/7b5df4f67b27355a774d to your computer and use it in GitHub Desktop.
CSS Technique: Block container demo code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="box"> | |
<span class="t box-inner">div + span</span> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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