<p>Sample text here...</p>
<p>Sample text here...</p>
</pre>
</pre>
</pre>
</pre>
<p><strong>Note:</strong> Be sure to keep code within <code><pre></code> tags as close to the left as possible; it will render all tabs.</p>
<p><spanclass="label label-info">Heads up!</span> Be sure to keep code within <code><pre></code> tags as close to the left as possible; it will render all tabs.</p>
<p>You may optionally add the <code>.pre-scrollable</code> class which will set a max-height of 350px and provide a y-axis scrollbar.</p>
<p>You may optionally add the <code>.pre-scrollable</code> class which will set a max-height of 350px and provide a y-axis scrollbar.</p>
</section>
</section>
...
@@ -802,6 +802,7 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -802,6 +802,7 @@ For example, <code>section</code> should be wrapped as inline.
</table>
</table>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<table>
<table>
<caption>…</caption>
<thead>
<thead>
<tr>
<tr>
<th>…</th>
<th>…</th>
...
@@ -834,14 +835,15 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -834,14 +835,15 @@ For example, <code>section</code> should be wrapped as inline.
<legend>Legend</legend>
<legend>Legend</legend>
<label>Label name</label>
<label>Label name</label>
<inputtype="text"placeholder="Type something…">
<inputtype="text"placeholder="Type something…">
<pclass="help-block">Example block-level help text here.</p>
<spanclass="help-block">Example block-level help text here.</span>
<spanclass="label label-info">Heads up!</span> In future versions, we'll be altering the use of these relative input classes to match our button sizes. For example, <code>.input-large</code> will increase the padding and font-size of an input.
<spanclass="label label-info">Heads up!</span> In future versions, we'll be altering the use of these relative input classes to match our button sizes. For example, <code>.input-large</code> will increase the padding and font-size of an input.
...
@@ -1217,9 +1225,18 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1217,9 +1225,18 @@ For example, <code>section</code> should be wrapped as inline.
<p>For multiple grid inputs per line, <strong>use the <code>.controls-row</code> modifier class for proper spacing</strong>. It floats the inputs to collapse white-space, sets the proper margins, and the clears the float.</p>
<p>For multiple grid inputs per line, <strong>use the <code>.controls-row</code> modifier class for proper spacing</strong>. It floats the inputs to collapse white-space, sets the proper margins, and the clears the float.</p>
...
@@ -1245,10 +1262,14 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1245,10 +1262,14 @@ For example, <code>section</code> should be wrapped as inline.
@@ -1282,7 +1303,7 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1282,7 +1303,7 @@ For example, <code>section</code> should be wrapped as inline.
<inputtype="text"><spanclass="help-inline">Inline help text</span>
<inputtype="text"><spanclass="help-inline">Inline help text</span>
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<span class="help-inline">Inline help text</span>
<input type="text"><span class="help-inline">Inline help text</span>
</pre>
</pre>
<h4>Block help</h4>
<h4>Block help</h4>
...
@@ -1291,11 +1312,11 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1291,11 +1312,11 @@ For example, <code>section</code> should be wrapped as inline.
<spanclass="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
<spanclass="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
<input type="text"><span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
</pre>
</pre>
<hrclass="bs-docs-separator"></hr>
<hrclass="bs-docs-separator">
<h2>Form control states</h2>
<h2>Form control states</h2>
...
@@ -1306,9 +1327,9 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1306,9 +1327,9 @@ For example, <code>section</code> should be wrapped as inline.
<formclass="bs-docs-example form-inline">
<formclass="bs-docs-example form-inline">
<inputclass="input-xlarge focused"id="focusedInput"type="text"value="This is focused...">
<inputclass="input-xlarge focused"id="focusedInput"type="text"value="This is focused...">
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<input class="input-xlarge" id="focusedInput" type="text" value="This is focused...">
<input class="input-xlarge" id="focusedInput" type="text" value="This is focused...">
</pre>
</pre>
<h3>Disabled inputs</h3>
<h3>Disabled inputs</h3>
<p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
<p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
...
@@ -1439,39 +1460,54 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1439,39 +1460,54 @@ For example, <code>section</code> should be wrapped as inline.
<h2>Button sizes</h2>
<h2>Button sizes</h2>
<p>Fancy larger or smaller buttons? Add <code>.btn-large</code>, <code>.btn-small</code>, or <code>.btn-mini</code> for two additional sizes.</p>
<p>Fancy larger or smaller buttons? Add <code>.btn-large</code>, <code>.btn-small</code>, or <code>.btn-mini</code> for additional sizes.</p>
<p>As a best practice, try to match the element for you context to ensure matching cross-browser rendering. If you have an <code>input</code>, use an <code><input type="submit"></code> for your button.</p>
<p>As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an <code>input</code>, use an <code><input type="submit"></code> for your button.</p>
</section>
</section>
...
@@ -1535,16 +1567,17 @@ For example, <code>section</code> should be wrapped as inline.
...
@@ -1535,16 +1567,17 @@ For example, <code>section</code> should be wrapped as inline.
<h1>Images</h1>
<h1>Images</h1>
</div>
</div>
<p>Simple classes to easily style images in any project. Heads up: <code>.img-rounded</code> and <code>.img-circle</code> don't work in IE7-8.</p>
<p>Add the <code>.img-rounded</code>, <code>.img-circle</code> or <code>.img-polaroid</code> class to a <code><img></code> element to easily style images in any project.</p>
<p><spanclass="label label-info">Heads up!</span><code>.img-rounded</code> and <code>.img-circle</code> don't work in IE7-8.</p>
&lt;p&gt;{{_i}}Sample text here...{{/i}}&lt;/p&gt;
&lt;p&gt;{{_i}}Sample text here...{{/i}}&lt;/p&gt;
</pre>
</pre>
</pre>
</pre>
<p>{{_i}}<strong>Note:</strong>Be sure to keep code within <code><pre></code> tags as close to the left as possible; it will render all tabs.{{/i}}</p>
<p><spanclass="label label-info">{{_i}}Heads up!{{/i}}</span>{{_i}}Be sure to keep code within <code><pre></code> tags as close to the left as possible; it will render all tabs.{{/i}}</p>
<p>{{_i}}You may optionally add the <code>.pre-scrollable</code> class which will set a max-height of 350px and provide a y-axis scrollbar.{{/i}}</p>
<p>{{_i}}You may optionally add the <code>.pre-scrollable</code> class which will set a max-height of 350px and provide a y-axis scrollbar.{{/i}}</p>
<spanclass="label label-info">{{_i}}Heads up!{{/i}}</span> In future versions, we'll be altering the use of these relative input classes to match our button sizes. For example, <code>.input-large</code> will increase the padding and font-size of an input.
<spanclass="label label-info">{{_i}}Heads up!{{/i}}</span> In future versions, we'll be altering the use of these relative input classes to match our button sizes. For example, <code>.input-large</code> will increase the padding and font-size of an input.
<p>{{_i}}For multiple grid inputs per line, <strong>use the <code>.controls-row</code> modifier class for proper spacing</strong>. It floats the inputs to collapse white-space, sets the proper margins, and the clears the float.{{/i}}</p>
<p>{{_i}}For multiple grid inputs per line, <strong>use the <code>.controls-row</code> modifier class for proper spacing</strong>. It floats the inputs to collapse white-space, sets the proper margins, and the clears the float.{{/i}}</p>
<inputtype="text"><spanclass="help-inline">Inline help text</span>
<inputtype="text"><spanclass="help-inline">Inline help text</span>
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<span class="help-inline">Inline help text</span>
<input type="text"><span class="help-inline">Inline help text</span>
</pre>
</pre>
<h4>{{_i}}Block help{{/i}}</h4>
<h4>{{_i}}Block help{{/i}}</h4>
...
@@ -1228,11 +1249,11 @@
...
@@ -1228,11 +1249,11 @@
<spanclass="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
<spanclass="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
<input type="text"><span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span>
</pre>
</pre>
<hrclass="bs-docs-separator"></hr>
<hrclass="bs-docs-separator">
<h2>{{_i}}Form control states{{/i}}</h2>
<h2>{{_i}}Form control states{{/i}}</h2>
...
@@ -1243,9 +1264,9 @@
...
@@ -1243,9 +1264,9 @@
<formclass="bs-docs-example form-inline">
<formclass="bs-docs-example form-inline">
<inputclass="input-xlarge focused"id="focusedInput"type="text"value="{{_i}}This is focused...{{/i}}">
<inputclass="input-xlarge focused"id="focusedInput"type="text"value="{{_i}}This is focused...{{/i}}">
</form>
</form>
<preclass="prettyprint linenums">
<preclass="prettyprint linenums">
<input class="input-xlarge" id="focusedInput" type="text" value="{{_i}}This is focused...{{/i}}">
<input class="input-xlarge" id="focusedInput" type="text" value="{{_i}}This is focused...{{/i}}">
</pre>
</pre>
<h3>{{_i}}Disabled inputs{{/i}}</h3>
<h3>{{_i}}Disabled inputs{{/i}}</h3>
<p>{{_i}}Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.{{/i}}</p>
<p>{{_i}}Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.{{/i}}</p>
...
@@ -1376,39 +1397,54 @@
...
@@ -1376,39 +1397,54 @@
<h2>{{_i}}Button sizes{{/i}}</h2>
<h2>{{_i}}Button sizes{{/i}}</h2>
<p>{{_i}}Fancy larger or smaller buttons? Add <code>.btn-large</code>, <code>.btn-small</code>, or <code>.btn-mini</code> for two additional sizes.{{/i}}</p>
<p>{{_i}}Fancy larger or smaller buttons? Add <code>.btn-large</code>, <code>.btn-small</code>, or <code>.btn-mini</code> for additional sizes.{{/i}}</p>
<p>{{_i}}As a best practice, try to match the element for you context to ensure matching cross-browser rendering. If you have an <code>input</code>, use an <code><input type="submit"></code> for your button.{{/i}}</p>
<p>{{_i}}As a best practice, try to match the element for your context to ensure matching cross-browser rendering. If you have an <code>input</code>, use an <code><input type="submit"></code> for your button.{{/i}}</p>
</section>
</section>
...
@@ -1472,16 +1504,17 @@
...
@@ -1472,16 +1504,17 @@
<h1>{{_i}}Images{{/i}}</h1>
<h1>{{_i}}Images{{/i}}</h1>
</div>
</div>
<p>{{_i}}Simple classes to easily style images in any project. Heads up: <code>.img-rounded</code> and <code>.img-circle</code> don't work in IE7-8.{{/i}}</p>
<p>{{_i}}Add the <code>.img-rounded</code>, <code>.img-circle</code> or <code>.img-polaroid</code> class to a <code><img></code> element to easily style images in any project.{{/i}}</p>
<p><spanclass="label label-info">{{_i}}Heads up!{{/i}}</span>{{_i}}<code>.img-rounded</code> and <code>.img-circle</code> don't work in IE7-8.{{/i}}</p>