After attempting to create a table using a bootstrap element without success, I resorted to making a div table instead.
Below is the image:
https://i.sstatic.net/44l6Z.png
Here is the code snippet:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row border-top bg-primary pt-3 pb-0 mt-5">
<div class="col-12">
<p class="text-white"><b>Lorem ipsum</b></p>
</div>
</div>
(Code continues...)
I am now seeking to make this layout responsive. Any suggestions on implementing a horizontal scroll or other methods are welcome and appreciated!