Bootstrap 4 responsive tables won't take up 100% width

As soon as you apply the .table-responsive class to a table, the table shrinks horizontally and no longer takes up 100% of the width.
Bootstrap 4 • HTML

The only solution so far is to use it as a wrapper:

<div class="table-responsive">
  <table class="table">
...
 </table>
</div>

Written by https://stackoverflow.com/questions/41747667/bootstrap-4-responsive-tables-wont-take-up-100-width

Posted by fbrefere001 on Sunday June 18, 2017