0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

Remove trailing spaces (#23593)

This commit is contained in:
Иван Жеков 2017-08-21 14:51:36 +03:00 committed by XhmikosR
parent d2973b3710
commit 721d948d94

View File

@ -495,18 +495,18 @@ With the handful of grid tiers available, you're bound to run into issues where,
In addition to column clearing at responsive breakpoints, you may need to reset offsets. See this in action in [the grid example]({{ site.baseurl }}/docs/{{ site.docs_version }}/examples/grid/). In addition to column clearing at responsive breakpoints, you may need to reset offsets. See this in action in [the grid example]({{ site.baseurl }}/docs/{{ site.docs_version }}/examples/grid/).
<div class="bd-example-row"> <div class="bd-example-row">
{% example html %} {% example html %}
<div class="row"> <div class="row">
<div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div> <div class="col-sm-5 col-md-6">.col-sm-5 .col-md-6</div>
<div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div> <div class="col-sm-5 offset-sm-2 col-md-6 offset-md-0">.col-sm-5 .offset-sm-2 .col-md-6 .offset-md-0</div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-sm-6 col-md-5 col-lg-6">.col.col-sm-6.col-md-5.col-lg-6</div> <div class="col-sm-6 col-md-5 col-lg-6">.col.col-sm-6.col-md-5.col-lg-6</div>
<div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 offset-lg-0</div> <div class="col-sm-6 col-md-5 offset-md-2 col-lg-6 offset-lg-0">.col-sm-6 .col-md-5 .offset-md-2 .col-lg-6 offset-lg-0</div>
</div> </div>
{% endexample %} {% endexample %}
</div> </div>
## Reordering ## Reordering
@ -645,7 +645,7 @@ Mixins are used in conjunction with the grid variables to generate semantic CSS
@include make-col-ready(); @include make-col-ready();
@include make-col($size, $columns: $grid-columns); @include make-col($size, $columns: $grid-columns);
// Get fancy by offsetting, or changing the sort order // Get fancy by offsetting, or changing the sort order
@include make-col-offset($size, $columns: $grid-columns); @include make-col-offset($size, $columns: $grid-columns);
{% endhighlight %} {% endhighlight %}