I'm confused as to the proper way (in terms of SEO and W3C validation and not breaking the Schema.org rules) of combining Schema.org microdata tags with unordered lists.
Is it better to keep the Schema elements on their own, and intersperse with the HTML structure, like this:
<ul>
<div itemscope itemtype="http://schema.org/LocalBusiness">
<li><span itemprop="name">My Business Name</span></li>
<div itemscope itemprop="address" itemtype="http://schema.org/PostalAddress">
<li><span itemprop="streetAddress">123 Main Street</span></li>
<li><span itemprop="addressLocality">Cityville</span>, <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">90210</span></li>
</div>
<span itemprop="telephone" content="+18001112222">(800) 111-2222 (Toll-Free)</span><br />
<span itemprop="telephone" content="+19251113333">(925) 111-3333</span><br />
<span itemprop="faxnumber" content="+19259998888">(925) 999-8888</span><br />
<link itemprop="url" href="http://www.mywebsite.com" />
<li><span itemprop="email"><a href="mailto:myemail@domain.com">myemail@domain.com</a></span></li>
</div>
<div itemprop="geo" itemtype="http://schema.org/GeoCoordinates">
<meta itemprop="latitude" content="77.111222333" />
<meta itemprop="longitude" content="-77.12345678" />
</div>
</ul>
OR is it better (if possible) to combine the Schema tags directly with the HTML elements:
<ul itemscope itemtype="http://schema.org/LocalBusiness">
<li itemprop="name">My Business Name</li>
<div itemscope itemprop="address" itemtype="http://schema.org/PostalAddress">
<li itemprop="streetAddress">123 Main Street</li>
<li><span itemprop="addressLocality">Cityville</span>, <span itemprop="addressRegion">CA</span> <span itemprop="postalCode">90210</span></li>
</div>
[etc...]
Which is the "correct" method?