aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorИван Жеков <[email protected]>2017-08-21 14:51:36 +0300
committerXhmikosR <[email protected]>2017-08-21 14:51:36 +0300
commit721d948d949f783d3213f383d1ef97ff909a2249 (patch)
tree646612c1d2f61bd3ea9c015b148a375962ea5672
parentd2973b37104fd360bfd7ae263a4f40f66abb5d27 (diff)
downloadbootstrap-721d948d949f783d3213f383d1ef97ff909a2249.tar.xz
bootstrap-721d948d949f783d3213f383d1ef97ff909a2249.zip
Remove trailing spaces (#23593)
-rw-r--r--docs/4.0/layout/grid.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/4.0/layout/grid.md b/docs/4.0/layout/grid.md
index 5921b8c15..fbc0e0bd1 100644
--- a/docs/4.0/layout/grid.md
+++ b/docs/4.0/layout/grid.md
@@ -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/).
-<div class="bd-example-row">
-{% example html %}
-<div class="row">
- <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>
+<div class="bd-example-row">
+{% example html %}
+<div class="row">
+ <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>
-<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 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>
-{% endexample %}
+<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 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>
+{% endexample %}
</div>
## 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($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);
{% endhighlight %}