CSS Table Reference

Position Properties

Name Value Description
position static Refers to the element's default behaviour.
position relative Positions the element relative to it's default position.
position absolute Positions the element relative to it's parent. All other elements on the page will ignore the element and act like it is not on the page.
position fixed Fixes the element to a specific position on the web page.
position sticky Keeps an element in the document flow as the user scrolls, but sticks to specific position as the page is scrolled further.