This quiz question comes courtesy of Matt Haughey and it's certainly one that I (and maybe you) have wondered about.
The scenario is familiar -- marking up multiple paragraphs within the same list item. There are visual consequences with any of these to take into account, and I'll refrain from mentioning anything until after the comments have started. I'd love to hear what everyone's thoughts are.
Q: When marking up multiple paragraphs within one list item, which method makes the most sense?
-
<ul>
<li>Paragraph 1<br /><br />
Paragraph 2</li>
</ul> -
<ul>
<li>Paragraph 1
<p>Paragraph 2</p></li>
</ul> -
<ul>
<li>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
</li>
</ul>