Problem Statement
What is the default position value for HTML elements?
Explanation
By default, all elements have a static position. Static elements are positioned according to the normal document flow and do not respond to top, right, bottom, or left offsets.
Code Solution
SolutionRead Only
div { position: static; }