Commit 57bc65f7 authored by Mark Otto's avatar Mark Otto

Merge pull request #8650 from loic/3.0.0-wip

Fixed minor typos in css.html
parents 1fb1c40a 273a3889
...@@ -1466,7 +1466,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -1466,7 +1466,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<div class="bs-callout bs-callout-danger"> <div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4> <h4>Cross-browser compatibility</h4>
<p>While Bootstrap will apply these styles in all browsers, IE and Safari don't actually support the <code>&lt;disabled&gt;</code> attribute on a <code>&lt;fieldset&gt;</code>. Use custom JavaScript to disable the fieldset in these browsers.</p> <p>While Bootstrap will apply these styles in all browsers, IE and Safari don't actually support the <code>disabled</code> attribute on a <code>&lt;fieldset&gt;</code>. Use custom JavaScript to disable the fieldset in these browsers.</p>
</div> </div>
<form class="bs-example form-inline"> <form class="bs-example form-inline">
...@@ -1534,7 +1534,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -1534,7 +1534,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<h2 id="forms-input-groups">Input groups</h3> <h2 id="forms-input-groups">Input groups</h3>
<p>Add text or buttons before, after, or on both sides of any text-based input. Use <code>.input-group</code> with an <code>.add-on</code> to prepend or append elements to an <code>&lt;input&gt;</code>.</p> <p>Add text or buttons before, after, or on both sides of any text-based input. Use <code>.input-group</code> with an <code>.input-group-addon</code> to prepend or append elements to an <code>&lt;input&gt;</code>.</p>
<div class="bs-callout bs-callout-danger"> <div class="bs-callout bs-callout-danger">
<h4>Cross-browser compatibility</h4> <h4>Cross-browser compatibility</h4>
......
...@@ -790,7 +790,7 @@ $('#example').tooltip(options) ...@@ -790,7 +790,7 @@ $('#example').tooltip(options)
<td>placement</td> <td>placement</td>
<td>string | function</td> <td>string | function</td>
<td>'top'</td> <td>'top'</td>
<td>how to position the tooltip - top | bottom | left | right | auto. <br> When "auto" is specified, it will dynamically reorient the tooltip. For example, if placment is "auto left", the tooltip will display to the left when possible, otherwise it will display right.</td> <td>how to position the tooltip - top | bottom | left | right | auto. <br> When "auto" is specified, it will dynamically reorient the tooltip. For example, if placement is "auto left", the tooltip will display to the left when possible, otherwise it will display right.</td>
</tr> </tr>
<tr> <tr>
<td>selector</td> <td>selector</td>
...@@ -1012,7 +1012,7 @@ $('#myTooltip').on('hidden.bs.tooltip', function () { ...@@ -1012,7 +1012,7 @@ $('#myTooltip').on('hidden.bs.tooltip', function () {
<td>placement</td> <td>placement</td>
<td>string | function</td> <td>string | function</td>
<td>'right'</td> <td>'right'</td>
<td>how to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placment is "auto left", the tooltip will display to the left when possible, otherwise it will display right.</td> <td>how to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the tooltip will display to the left when possible, otherwise it will display right.</td>
</tr> </tr>
<tr> <tr>
<td>selector</td> <td>selector</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment