Problem Statement
Which property is used to prevent elements from wrapping around floated elements?
Explanation
The clear property specifies which sides of an element floating elements are not allowed. For example, clear: both ensures the element appears below any floated elements.
Code Solution
SolutionRead Only
.footer { clear: both; }