Which method removes an element from the normal document flow?
- A position: relative
- B position: absolute
- C margin: auto
- D display: block
Answer
position: absolute
Absolute and fixed positioning remove the element from flow so it occupies no space. Relative positioning keeps the original space reserved.





