W3C Specification: CSS 2.1 | Anonymous inline boxes
In a document with HTML markup like this: <p>Some <em>emphasized</em> text</p> The <p> generates a block box, with several inline boxes inside it. The box for “emphasized” is an inline box generated by an inline element (<em>), but the other boxes (“Some” and “text”) are inline boxes generated by a block-level element (<p>). The latter … Read more