부트스트랩 테이블 왼쪽, 오른쪽으로 지정하는 방법
보통 찾으면 테이블 안에 있는 것을 어떻게 정렬 하는것에 대해서 나왔는데요.
아래 부분은 그것이 아니라 테이블 자체를 왼쪽, 오른쪽 지정 하는것입니다. 부트스트랩은 기본적으로 가운데로 지정 되는것 같습니다.
https://stackoverflow.com/questions/38160951/how-do-i-horizontally-center-a-table-in-bootstrap
justify-content-start
justify-content-center
justify-content-end
<div class="row justify-content-center">
<div class="col-auto">
<table class="table table-responsive">
....table stuff....
</table>
</div>
</div>
<div class="table-responsive">
<table class="mx-auto w-auto">
....
</table>
</div>