Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Level 1 - Week 6

Level 1 - Week 6

Avatar for Graham Lewis

Graham Lewis

June 23, 2015

More Decks by Graham Lewis

Other Decks in Technology

Transcript

  1. Blocks and inlines Block level tags - take up the

    entire width of thier container Examples: div, p, h1 to h6 Inline level tags - flow with the surrounding text Examples: span, strong, em, img
  2. Making an inline level tag act like a block span

    { display: block; } ! inline-block makes the tag flow like an inline tag, but keeps other aspects of a block level tag
  3. Sizing Box that is 300px wide by 400px high div

    { width: 300px; height: 400px; } ! the default size of all elements is just big enough to hold its contents