W3C Doc: http://www.w3schools.com/cssref/pr_class_position.asp

  • static
    • W3C: Default. Elements render in order, as they appear in the document flow
    • pos-Angaben haben keine Auswirkung
  • relative
    • W3C: The element is positioned relative to its normal position, so „left:20“ adds 20 pixels to the element’s LEFT position
  • fixed
    • W3C: The element is positioned relative to the browser window
    • genau so weit von Rand wie definiert
    • Über den anderen Elementen
  • absolute
    • W3C: The element is positioned relative to its first positioned (not static) ancestor element
    • Wie fixed, wird jedoch verwendet wenn zusammen mit 2.Element
  • inherit
    • The value of the position property is inherited from the parent element