A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/twbs/bootlint/wiki/E027 below:

E027 · twbs/bootlint Wiki · GitHub

.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

Bootstrap v1.x (Bootlint for Bootstrap v4 and newer) .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>

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4