typo for 3 column grid. fixes:

http://github.com/jquery/jquery-mobile/issuesearch?state=open&q=docs#issue/229
This commit is contained in:
Todd Parker 2010-10-20 15:46:02 -04:00
parent 95d382cb9c
commit 8816dd3383

View file

@ -70,7 +70,7 @@
<p>The other grid layout configuration uses <code>class=ui-grid-b</code> on the parent, and 3 child container elements, each with its respective <code>ui-block-a/b/c</code> class, to create a three-column layout (33/33/33%).</p>
<pre><code>
&lt;div class=&quot;ui-grid-a&quot;&gt;
&lt;div class=&quot;ui-grid-b&quot;&gt;
&lt;div class=&quot;ui-block-a&quot;&gt;Block A&lt;/div&gt;
&lt;div class=&quot;ui-block-b&quot;&gt;Block B&lt;/div&gt;
&lt;div class=&quot;ui-block-c&quot;&gt;Block C&lt;/div&gt;
@ -88,8 +88,8 @@
<p>And an example of a 3 column grid with buttons inside:</p>
<fieldset class="ui-grid-b">
<div class="ui-block-a"><button type="submit" data-theme="c">Nope</button></div>
<div class="ui-block-b"><button type="submit" data-theme="a">Maybe</button></div>
<div class="ui-block-a"><button type="submit" data-theme="c">Hmm</button></div>
<div class="ui-block-b"><button type="submit" data-theme="a">No</button></div>
<div class="ui-block-b"><button type="submit" data-theme="b">Yes</button></div>
</fieldset>