Does it matter whether my microdata breadcrumb trail starts and ends with <div>, <span> or <li>? Consider <div> tag first:
<div><span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses" itemprop="url">
<span itemprop="title">Dresses</span>
</a></span> »
</div>
And now what if I replace it with <li> or <span> tags? What difference it would make?
I saw this <li> in website's breadcrumbs and it displayed without showing bullet points.
UPDATE: Look what I just found:
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/" itemprop="url">
<span itemprop="title">Dresses</span>
</a>
</span> >>
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<span a href="http://www.example.com/" itemprop="url"></span>
<span itemprop="title">Last Page**</span>
</a>
</span>
Normally last page is not displayed in search results unless it has URL propery. However I was able to make it display in a non-hyperlinked way in green. How is that looked upon by Google?
<nav>with<ul>because that's more relevant than all of the ones mentioned ;) I recommend you research about span, p, a, div, section, main, nav, ul and so on. – Simon Hayter Mar 28 '14 at 18:32