I have a table that has about 550 rows that I would like to be scrollable. I am using the table-fixed
style for bootstrap, but it doesn't seem to be working. It also doesn't seem to register table-condensed
. I'm not sure what's going on - I've checked several examples and mine looks just like them. Does anyone have any idea what I might be doing wrong?
I took the data out of the examples because it's a ton, but if you think you need it to answer what's going on, I can provide it. Thanks.
<div class="container pt-3">
<div class="row">
<div class="col-5 col md-5">
<h1>Data</h1>
<hr>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>The following table includes all of the data used for plotting during this project</p>
</div>
</div>
<div class="row">
<div class="table-responsive-md">
<table class="table table-bordered table-hover table-striped table-condensed table-fixed">
<thead>
...
</thead>
<tbody>
...
</tbody>
</table>
</div>
</div>
</div>