Answers for "smaller table bootstrap"

-1

responsive table bootstrap 4

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

bootstrap table dense

<!-- BOOTSTRAP V3 -->
<table class="table table-condensed">
  ...
</table>
<!-- BOOTSTRAP v4 -->
<table class="table table-sm">
  ...
</table>
Posted by: Guest on June-30-2020
0

d-print-table-cell bootstrap

<div class="d-print-none">Doesn't display when printing</div>
<div class="d-print-block">Displays as block when printing</div>
<div class="d-print-inline">Displays as inline when printing</div>
<div class="d-print-inline-block">Displays as inline-block when printing</div>Copy code
Posted by: Guest on August-30-2021

Code answers related to "smaller table bootstrap"

Browse Popular Code Answers by Language