I am adding Microdata to my site and would like to know if there is a problem with this markup:
<span class="createdate" itemprop="dateCreated"><i class="icon-calendar"></i> 7-15-2013</span>
Or should I use this:
<span class="createdate"><i class="icon-calendar"></i> <span itemprop="dateCreated">7-15-2013</span></span>
Basically, does Microdata markup must follow the text, and does it have a problem with an icon or span
in front of the text?