Problem Statement
Which statement about position: relative is true?
Explanation
Position: relative keeps the element in the normal document flow but allows it to move relative to its original position using top, right, bottom, or left properties.
Code Solution
SolutionRead Only
div { position: relative; top: 10px; }