Use `.table-responsive{-sm|-md|-lg|-xl}` as needed to create responsive tables up to a particular breakpoint. From that breakpoint and up, the table will behave normally and not scroll horizontally.
-<div class="bd-example">
+**These tables may appear broken until their responsive styles apply at specific viewport widths.**
+
{% for bp in site.data.breakpoints %}{% unless bp.breakpoint == "xs" %}
+<div class="bd-example">
<div class="table-responsive{{ bp.abbr }}">
<table class="table">
<thead>
</tbody>
</table>
</div>
-{% endunless %}{% endfor %}
</div>
-
{% highlight html %}
-{% for bp in site.data.breakpoints %}{% unless bp.breakpoint == "xs" %}
<div class="table-responsive{{ bp.abbr }}">
<table class="table">
...
</table>
</div>
-{% endunless %}{% endfor %}
{% endhighlight %}
+{% endunless %}{% endfor %}