DONT ADD ANYTHING HERE!

  1. The float CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it
  2. The element is removed from the normal flow of the page, though still remaining a part of the flow
  3. It is shifted to the left, or right, until it touches the edge of its containing box, or another floated element
  4. left
    The element must float on the left side of its containing block
  5. right
    The element must float on the right side of its containing block
  6. none
    The element must not float
  7. inline-start
    1. The element must float on the start side of its containing block
    2. That is the left side with ltr scripts, and the right side with rtl scripts
    3. The logical equivalent of left based on the writing-mode (CSS-Tricks)
  8. inline-end
    1. The element must float on the inline-end side of its containing block
    2. That is the right side with ltr scripts, and the left side with rtl scripts
    3. The logical equivalent of right based on the writing-mode (CSS-Tricks)

clear

  1. The clear property sets whether an element must be moved below (cleared) floating elements that precede it
  2. The clear property applies to floating and non-floating elements
  3. left
    Is a keyword indicating that the element is moved down to clear past left floats
  4. right
    Is a keyword indicating that the element is moved down to clear past right floats
  5. both
    Is a keyword indicating that the element is moved down to clear past both left and right floats
  6. none
    Is a keyword indicating that the element is not moved down to clear past floating elements
  7. inline-start
    Is a keyword indicating that the element is moved down to clear floats on start side of its containing block, that is the left floats on ltr scripts and the right floats on rtl scripts
  8. inline-end
    Is a keyword indicating that the element is moved down to clear floats on end side of its containing block, that is the right floats on ltr scripts and the left floats on rtl scripts

References