The examples I often see for using Schema.org Microdata use a lot of extra span
elements, such as the following:
<span itemprop="telephone">
<a href="tel:+18506484200">
850-648-4200
</a>
</span>
Is the extra span
element really necessary or is it acceptable to place the itemprop
in the a
tag? Like so:
<a href="tel:+18506484200" itemprop="telephone">
850-648-4200
</a>
The latter example seems so much cleaner, but the examples I see always seem to use separate span
elements.