Positioning Properties
1.
Static
This was default positioning.
Top, right, bottom and left don’t make effects
Parent=all. Has no effect. Keep everything in order.
2.
Fixed
This like absolute positioning. Like absolute but more extreme – it out
of the order even the parent box. It’s work even the parent is relative
positioning.
Parent=all. Out of control of the parent box.
Display block is broken.
It like display:none, but visible.
3.
Relative
It’s always placed relative to its normal position. If TRBL is set to
zero, it no effect – coz it’s reference point is its normal position.
Parent=all. In the control of the parent box.
4.
Absolute
Parent=relative. In the control of parent box.
Parent=static. Out of control of parent box.
Parent=fixed. Out of control of parent box.
Parent=absolute. In the control of the parent box.
Display block is broken.
It
like display:none, but visible.