Created
December 23, 2012 19:04
-
-
Save jbail/4365370 to your computer and use it in GitHub Desktop.
A CodePen by Jeff Bail.
This file contains hidden or 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 id="content"></div> | |
| <div id="border"></div> |
This file contains hidden or 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 { | |
| width: 100px; | |
| height: 100px; | |
| padding: 10px; | |
| float: left; | |
| margin-right: 20px; | |
| } | |
| #content { | |
| border: 5px solid blue; | |
| box-sizing: content-box; | |
| } | |
| #border { | |
| border: 5px dashed black; | |
| box-sizing: border-box; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment