Question: The image below has float: left applied. Text wraps the float on the right and bottom. How would you force the second paragraph to start underneath the float, leaving a gap after the preceding paragraph?
- Apply `float: left` to the second paragraph.
- Apply `clear: right` to the floated item.
- Apply `clear: left` to the second paragraph.
- Apply `clear: left` to the floated item.
Answer: The correct answer of the above question is Option C:Apply `clear: left` to the second paragraph.