mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-24 00:10:24 +00:00
use .col-xs-* in "Forms: Column Sizing" docs so more responsive
This commit is contained in:
parent
7247527f04
commit
0b8a3e65aa
1 changed files with 12 additions and 12 deletions
24
css.html
24
css.html
|
|
@ -1985,28 +1985,28 @@ For example, <code><section></code> should be wrapped as inline.
|
|||
<div class="bs-example">
|
||||
<form role="form">
|
||||
<div class="row">
|
||||
<div class="col-lg-2">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-2">
|
||||
<div class="col-xs-2">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-2">
|
||||
</div>
|
||||
<div class="col-lg-3">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-3">
|
||||
<div class="col-xs-3">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-3">
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-4">
|
||||
<div class="col-xs-4">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-4">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- /.bs-example -->
|
||||
{% highlight html %}
|
||||
<div class="row">
|
||||
<div class="col-lg-2">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-2">
|
||||
<div class="col-xs-2">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-2">
|
||||
</div>
|
||||
<div class="col-lg-3">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-3">
|
||||
<div class="col-xs-3">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-3">
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<input type="text" class="form-control" placeholder=".col-lg-4">
|
||||
<div class="col-xs-4">
|
||||
<input type="text" class="form-control" placeholder=".col-xs-4">
|
||||
</div>
|
||||
</div>
|
||||
{% endhighlight %}
|
||||
|
|
|
|||
Loading…
Reference in a new issue