CSS boxes

Hello,

I'm trying to write an HTML renderer and I have a question:

the CSS specs say that in 

<body>
Some text
<p>Some para</p>
</body>

since the body contains at least one block element, it only creates children blocks, so an anynomous block is created for Some text.

In a case like this:

<body>
Some text<b>some more text</b>
<p>Some para</p>
</body>

Should I create an anynomous block for "Some text<b>some more text</b>"

thanks,

--
Sigurd Lerstad

Received on Wednesday, 1 August 2001 18:11:35 UTC