<div class="row justify-content-center">
<div class="col-md-4">
Displaying Column with a width of md-4
</div>
<div class="col-md-1 .d-sm-none">
<!-- Creating a gap between columns -->
</div>
<div class="col-md-4">
Another Column with a width of md-4
</div>
</div>
Wondering if adding an empty col-md-1 to space out these two Columns is the correct approach? And also, using .d-sm-none to hide it on mobile. Open to suggestions for a better or cleaner method.