Centering a table that is centered in page in markdown

Using CSS - see this tutorial that says align is deprecated (but it works for now) and that text-align won’t work on the table itself.

 <table class="center">
    ...
  </table>
  table.center {
    margin-left:auto; 
    margin-right:auto;
  }

Another source

table {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

source https://www.w3schools.com/css/css_align.asp