Sachsentext

All element "id" attributes must be unique

Element "id" attributes must be unique.

Example

Wrong

<p id="paragraph">First Paragraph</p><p id="paragraph">Second Paragraph</p>

Right

<p id="paragraph-1">First Paragraph</p><p id="paragraph-2">Second Paragraph</p>