Multiple tables in a Boostrap 4 row
Multiple tables in a Boostrap 4 row
harmenzon
Posts: 17Questions: 7Answers: 0
I would like to get multiple tables in one Bootstrap 4 row. How to achieve this? If possible I would like to use the Bootstrap 4 class 'col' for this. For example:
<div class="container-fluid">
<div class="row">
<div class="col">
<h1>A</h1>
</div>
<div class="col">
<h1>B</h1>
</div>
<div class="col">
<h1>C</h1>
</div>
</div>
<div class="row">
<div class="col">
<table id="" class="table myTable">
</div>
<div class="col">
<table id="" class="table myTable">
</div>
<div class="col">
<table id="" class="table myTable">
</div>
</div>
</div>
This discussion has been closed.
Answers
Have you tried your above layout with Datatables?
Here is an example with your above code:
http://live.datatables.net/zaxuwetu/1
Kevin
Thanks for the example @kthorngren. This helped me to solve my problem.