Currently utilizing bootstrap, I have a drinks menu displayed in the following layout when viewed in Firefox.
The mobile view of this menu is functioning properly. However, I am encountering issues with the desktop view as the columns are not aligning correctly in a row.
Shown below is the mobile/current view:
https://i.sstatic.net/9jtX0.png
My desired outcome is illustrated in the image below (although the last element does not line up perfectly yet, the concept is there);
https://i.sstatic.net/TfWfa.png
Here is my current code (tr/td tags are assumed for simplicity):
<div class="row justify-content-center pt-5 mt-5 mb-5 pb-5">
<div class="col-auto">
<table class="table-responsive">
<!-- Red -->
<tbody>
<!-- drinks items -->
</tbody>
<!-- White -->
<tbody>
<!-- drinks items -->
</tbody>
</table>
</div>
</div>