Answers for "how to align a table in the center of a page css"

CSS
0

how to center the table horizontally css

table
{ 
    margin-left: auto;
    margin-right: auto;
}
Posted by: Guest on August-20-2020
0

css center table on page

<table align="center">
    ...
  </table>
Posted by: Guest on May-29-2020

Code answers related to "how to align a table in the center of a page css"

Browse Popular Code Answers by Language