Microdata Example Markup for iPhone 3GS

Microdata example answer to Stack Overflow question: http://stackoverflow.com/questions/7430557/schema-org-brand-of-a-product-an-organization

HTML

<div itemscope itemtype="http://schema.org/Product">
  <img itemprop="image" src="http://dev.bowdenweb.com/open-social/mobile/i/iphone-3gs-logo-01-product-title-20100607.png" alt="iPhone 3GS Logo Tagline" />
  <a href="http://store.apple.com/us/product/MC555" title="iPhone 3GS8GB Black for AT&#38;T &#45; Apple Store (U.S.)" itemprop="url"><span itemprop="name">iPhone 3GS</span></a>
  <span itemprop="brand manufacturer">Apple</span>
  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    <span itemprop="price">$49 (8GB)</span>
    <link itemprop="availability" href="http://schema.org/InStock" />In stock
  </div>
  <h2>Product description:</h2>
  <img src="http://dev.bowdenweb.com/open-social/mobile/i/iphone-3gs8gb-black-mc555-geo-us.jpg" alt="iPhone 3GS8GB Black" /> itemprop="image" /> <span itemprop="description">Display with 480-by-320 resolution. 
VGA video recording. 
3-megapixel camera. 
MMS. 
Voice Control</span>
  <h2>Sellers:</h2>
  <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
    <a class="appstore" itemprop="url" href="http://store.apple.com/us/product/MC555" title="iPhone 3GS8GB Available in the Apple Store!"><b>Available in the</b>
          <img src="http://dev.bowdenweb.com/open-social/media/i/apple-store-logo-02.png" alt="Apple Store" width="88" height="21" /><b>$49.00</b></a>
    <link class="clearleft" itemprop="availability" href="http://schema.org/InStock" /><b>In stock</b>
  </div>

</div>

CSS

a,
span,
img,
b {
  display: block
}

a.appstore {
  color: #605e5f;
  width: 300px;
  margin: 10px 0;
  height: 21px
}

a.appstore img {
  float: left;
  margin: 0 3px
}

a.appstore b {
  float: left;
  font-weight: 700;
  margin: 0 3px 0 3px;
  line-height: 1
}

link+b {
  clear: left;
  float: none
}