Problem Statement
What is the default positioning for all HTML elements?
Explanation
By default, all elements are positioned `static`. This means they follow the normal document flow and are not affected by top, left, right, or bottom properties.
Code Solution
SolutionRead Only
div { position: static; }Practice Sets
This question appears in the following practice sets:
