@@ -1051,8 +1051,8 @@ For example, <code><section></code> should be wrapped as inline.
<p>Inputs, selects, and textareas are 100% wide by default in Bootstrap. To use the inline form, you'll have to set a width on the form controls used within.</p>
@@ -1132,7 +1132,7 @@ For example, <code><section></code> should be wrapped as inline.
<h4>Type declaration required</h4>
<p>Inputs will only be fully styled if their <code>type</code> is properly declared.</p>
</div>
<formclass="bs-example form-inline">
<formclass="bs-example">
<inputtype="text"placeholder="Text input">
</form>
{% highlight html %}
...
...
@@ -1141,7 +1141,7 @@ For example, <code><section></code> should be wrapped as inline.
<h3>Textarea</h3>
<p>Form control which supports multiple lines of text. Change <code>rows</code> attribute as necessary.</p>
<formclass="bs-example form-inline">
<formclass="bs-example">
<textarearows="3"></textarea>
</form>
{% highlight html %}
...
...
@@ -1257,7 +1257,7 @@ For example, <code><section></code> should be wrapped as inline.
<h3id="forms-input-focus">Input focus</h3>
<p>We remove the default <code>outline</code> styles on some form controls and apply a <code>box-shadow</code> in its place for <code>:focus</code>.</p>
<formclass="bs-example form-inline">
<formclass="bs-example">
<inputclass="focused"id="focusedInput"type="text"value="This is focused...">
</form>
{% highlight html %}
...
...
@@ -1272,7 +1272,7 @@ For example, <code><section></code> should be wrapped as inline.
<p>Invalid inputs are styled via the <code>:invalid</code> CSS selector, which is not supported by Internet Explorer 9 and below.</p>