Problem Statement
Which of the following elements are block-level by default?
Explanation
The <div> element is block-level by default, meaning it takes up the full width available and starts on a new line. Span and a are inline elements.
Code Solution
SolutionRead Only
div { display: block; }