What is the default value for the position property of HTML elements?
Static
How does setting position relative on an element affect document flow and where the element appears on the page?
Relative positioning places the element from its normal flow, moving it up, down, left or right.
How does setting position absolute on an element affect document flow and where the element appears on the page?
Absolute positioning places the element in relation to the element it is nested in.
What are the box offset properties?
top, bottom, left and right, which tell the browser how far the element should be placed in its parent element.