diff --git a/docs/base-css.html b/docs/base-css.html index 363f91a02..9c7569563 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -406,18 +406,21 @@
Wrap inline snippets of code with <code>.
<section> should be wrapped as inline.
+-For example, <code>section</code> should be wrapped as inline. +For example, <code><section></code> should be wrapped as inline.
Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.
-<p>Sample text here...</p> -+
<p>Sample text here...</p>+
<pre> -<p>Sample text here...</p> + <p>Sample text here...</p> </pre>
Heads up! Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.
<table>
- <caption>…</caption>
+ <caption>...</caption>
<thead>
<tr>
- <th>…</th>
- <th>…</th>
+ <th>...</th>
+ <th>...</th>
</tr>
</thead>
<tbody>
<tr>
- <td>…</td>
- <td>…</td>
+ <td>...</td>
+ <td>...</td>
</tr>
</tbody>
</table>
@@ -1040,7 +1043,7 @@ For example, <code>section</code> should be wrapped as inline.
Use the default option or specify a multiple="multiple" to show multiple options at once.
<select>
- <option>something</option>
+ <option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
@@ -1162,8 +1165,8 @@ For example, <code>section</code> should be wrapped as inline.
<button type="submit" class="btn">Search</button>
</div>
<div class="input-prepend">
- <input type="text" class="span2 search-query">
<button type="submit" class="btn">Search</button>
+ <input type="text" class="span2 search-query">
</div>
</form>
@@ -1567,8 +1570,7 @@ For example, <code>section</code> should be wrapped as inline.
Add the .img-rounded, .img-circle or .img-polaroid class to a <img> element to easily style images in any project.
Heads up! .img-rounded and .img-circle don't work in IE7-8.
Add classes to an <img> element to easily style images in any project.
Heads up! .img-rounded and .img-circle do not work in IE7-8 due to lack of border-radius support.