This repository was archived by the owner on Feb 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 310
E027
Herst edited this page Aug 18, 2019
·
2 revisions
.table-responsive is supposed to be used on the table's parent wrapper <div>, not on the table itself
Wrong:
<table class="table table-responsive">
...
</table>Right:
<div class="table-responsive">
<table class="table">
...
</table>
</div>More details: https://getbootstrap.com/docs/3.4/css/#tables-responsive
.table-responsive* is supposed to be used on the table's parent wrapper <div>, not on the table itself
Wrong:
<table class="table table-responsive-sm">
...
</table>Right:
<div class="table-responsive-sm">
<table class="table">
...
</table>
</div>Bootlint documentation wiki content is licensed under the CC BY 3.0 License, and based on Bootstrap's docs which are copyright Twitter, Inc.