List of HTML5 elements that can be nested inside P element?

HtmlNested

Html Problem Overview


I am trying to figure all the valid HTML5 elements that can be nested inside paragraph elements such that w3 validator doesn't show any errors. I mean I am trying to figure all tags that can replace the dots in the following code such that w3 validator doesn't show any errors:

<p>...</p>

Is there such a list available? I tried searching on Google without any luck.

Even if the converse list is available, i.e. elements that can not be nested inside paragraph elements, it is good enough for me.

Html Solutions


Solution 1 - Html

The HTML5 spec tells us that the <p> element's content model is phrasing content. Phrasing content is defined by the spec:

> ###3.2.5.1.5 Phrasing content > > Phrasing content is the text of the document, as well as elements that > mark up that text at the intra-paragraph level. Runs of phrasing > content form paragraphs. > >

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLone LearnerView Question on Stackoverflow
Solution 1 - HtmlMatt BallView Answer on Stackoverflow