I'm trying to get my pages to validate and the only error it is now throwing is:

Attribute itemprop not allowed on element a at this point.

My code is as follows:

<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
  <a href="http://www.example.com/dresses" itemprop="url">
    <span itemprop="title">Dresses</span>
  </a>
</div>  

This follows the email given by Google on the following page:

Breadcrumbs

It also seems to follows the HTML5 Microdata specification as well here:

HTML5 Microdata

Any ideas why this doesn't validate? What am I missing or is this just too new to for the validator to validate at the moment?

link|improve this question
I believe this is a case of wrong doctype? What doctype do you use? – Erik Landvall Apr 4 at 9:20
feedback

1 Answer

Which validator were you using? Some don't support the newest features of HTML5 yet, and some do but won't trigger proper validation for your document because of the doctype that you declare.

However, the newly released Nu validator shouldn't have these problems. You can read about it on .net magazine.

link|improve this answer
I was using the W3C validator on at validator.w3.org – da644 Feb 15 at 20:38
I have just tried the Nu and I get the same message! – da644 Feb 15 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.