Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
cvrebert edited this page Oct 2, 2014 · 2 revisions

E027

.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: http://getbootstrap.com/css/#tables-responsive