I am having some trouble with making my table scrollable. I have around 550 rows in the table and I am using the `table-fixed` style from bootstrap, but it doesn't seem to be working as expected. Additionally, the `table-condensed` class is not registering either. I have checked several examples and I can't figure out what's wrong - my code looks similar to those examples. Can anyone help me figure out what might be going on?
I removed the data from my example for brevity, but if you need it to troubleshoot, please let me know. 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>