• float: left;
  • float: right;
  • without float, it will usually take the entire block, but with float the text will flow naturally
  • if you want an element (something like footer) to not be affected
    • clear: left
    • clear: both
  • Just use float to have text wrap around stuff, NOT FOR LAYOUT