Answers for "how center table inside div"

1

how to put a table in the middle of a div in html

<div>
  <table border="1" align="center">   </table>
</div>
Posted by: Guest on January-06-2022
1

how to place a table in center in css

.center {
  margin-left: auto;
  margin-right: auto;
}
Posted by: Guest on October-25-2020

Browse Popular Code Answers by Language