Answers for "bootstrap table genrator"

2

bootstrap make table compact

table-sm
To reduce the cell padding on your tables add a class .table-sm to your Bootstrap table. 
Example below

<table class="table table-sm">
Posted by: Guest on November-02-2021
-2

bootstrap responsive table

<div class="table-responsive-sm">
  <table class="table">
    ...
  </table>
</div>
Posted by: Guest on March-01-2021

Browse Popular Code Answers by Language