diff --git a/docs/css.html b/docs/css.html index db7cb17e2a..b23119f8d2 100644 --- a/docs/css.html +++ b/docs/css.html @@ -1538,7 +1538,33 @@ For example, <code><section></code> should be wrapped ... </select> -
If you need multiple inputs on the same line, wrap them in the standard grid markup (with `.row` and `.span*` classes). Each input should have it's own column and will expand to fill the available width automatically.
+If you need multiple inputs on the same line, wrap them in the standard grid markup (with .row
and .span*
classes). Each input should have it's own column and will expand to fill the available width automatically.
+<div class="row"> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> +</div> +
Present data in a form that's not editable without using actual form markup.
diff --git a/docs/templates/pages/css.mustache b/docs/templates/pages/css.mustache index 93e3e269d7..31d0b6c2e8 100644 --- a/docs/templates/pages/css.mustache +++ b/docs/templates/pages/css.mustache @@ -1478,7 +1478,33 @@ For example, <code><section></code> should be wrapped ... </select> -If you need multiple inputs on the same line, wrap them in the standard grid markup (with `.row` and `.span*` classes). Each input should have it's own column and will expand to fill the available width automatically.
+If you need multiple inputs on the same line, wrap them in the standard grid markup (with .row
and .span*
classes). Each input should have it's own column and will expand to fill the available width automatically.
+<div class="row"> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> + <div class="span4"> + <input type="text" placeholder=".span4"> + </div> +</div> +
Present data in a form that's not editable without using actual form markup.