center table in HTML

Give width to table, and set margin auto horizontally.

table {
  width:500px;
  margin: 10px auto;
}

Leave a Comment