Skip to main content

HTML Guide

Free site validation

Find out what web pages on your sites are affected by HTML issues.

The “itemprop” attribute was specified, but the element is not a property of any item.

An itemprop attribute has been found in the document, but it cannot be associated to any item. Most probable cause is the lack of an itemscope attribute defining an item.

Microdata allows nested groups of properties, which must be scoped to the item they belong to, as in this example:

<div itemscope>
   <p>My name is <span itemprop="name">Liza</span> and I'm <span itemprop="age">48</span> years old.</p>
</div>

Learn more:

Related W3C validator issues