Re: Optional tags

Thanks for your response.

> It means "if the end tag were inserted where you want it to be inserted, 
> would the thing right after that end tag be the start tag for one of the 
> listed elements?“

I expected

<p>foo
<p>bar

to be the same like

<p>foo</p>
<p>bar</p>

but it is

<p>foo
</p><p>bar</p>

I see. Misled. Somehow.

Received on Wednesday, 22 January 2014 11:15:48 UTC