Created
April 26, 2019 09:12
-
-
Save aneurysmjs/e62908c116987ed68d800143fdd2ce81 to your computer and use it in GitHub Desktop.
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
// The type of a box is always defined by the 'display' property: | |
/** | |
* block: | |
* 100% of parent's width | |
* vertically, one after another | |
*/ | |
/** | |
* inline-block: | |
* a mix of block and inline | |
* occupies only content's space | |
* no line-breaks | |
*/ | |
/** | |
* inline: | |
* occupies only content's space | |
* no line-breaks | |
* no heights and widths | |
* we can only specify HORIZONTAL paddings and margins | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment