diff --git a/docs/base-css.html b/docs/base-css.html index 363f91a020..9c75695639 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -406,18 +406,21 @@

Inline

Wrap inline snippets of code with <code>.

+
+ For example, <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.
 

Basic block

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>
-&lt;p&gt;Sample text here...&lt;/p&gt;
+  &lt;p&gt;Sample text here...&lt;/p&gt;
 </pre>
 

Heads up! Be sure to keep code within <pre> tags as close to the left as possible; it will render all tabs.

@@ -802,17 +805,17 @@ For example, <code>section</code> should be wrapped as inline.
 <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.

- + @@ -994,7 +997,7 @@
 <select>
-  <option>something</option>
+  <option>1</option>
   <option>2</option>
   <option>3</option>
   <option>4</option>
@@ -1099,8 +1102,8 @@
     <button type="submit" class="btn">{{_i}}Search{{/i}}</button>
   </div>
   <div class="input-prepend">
-    <input type="text" class="span2 search-query">
     <button type="submit" class="btn">{{_i}}Search{{/i}}</button>
+    <input type="text" class="span2 search-query">
   </div>
 </form>
 
@@ -1504,8 +1507,7 @@

{{_i}}Images{{/i}}

-

{{_i}}Add the .img-rounded, .img-circle or .img-polaroid class to a <img> element to easily style images in any project.{{/i}}

-

{{_i}}Heads up!{{/i}} {{_i}}.img-rounded and .img-circle don't work in IE7-8.{{/i}}

+

{{_i}}Add classes to an <img> element to easily style images in any project.{{/i}}

@@ -1516,6 +1518,7 @@ <img src="..." class="img-circle"> <img src="..." class="img-polaroid">
+

{{_i}}Heads up!{{/i}} {{_i}}.img-rounded and .img-circle do not work in IE7-8 due to lack of border-radius support.{{/i}}

@@ -1708,7 +1711,7 @@

{{_i}}Buttons{{/i}}

-
{{_i}}Button group in a button toolbar{{/i}}
+
{{_i}}Button group in a button toolbar{{/i}}
@@ -1731,7 +1734,7 @@ </div> -
{{_i}}Dropdown in a button group{{/i}}
+
{{_i}}Dropdown in a button group{{/i}}
{{_i}}User{{/i}} @@ -1759,7 +1762,7 @@ </div> -
{{_i}}Button{{/i}}
+
{{_i}}Small button{{/i}}
{{! /bs-docs-example }}