Skip to content

Instantly share code, notes, and snippets.

@aneurysmjs
Created April 26, 2019 09:12
Show Gist options
  • Save aneurysmjs/e62908c116987ed68d800143fdd2ce81 to your computer and use it in GitHub Desktop.
Save aneurysmjs/e62908c116987ed68d800143fdd2ce81 to your computer and use it in GitHub Desktop.
// 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