Answers for "table center"

1

text in centre table css

text-align:center
Posted by: Guest on January-16-2021
0

align table in middle of page

table#yourTable {
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -(H/2)px -(W/2)px;
    width: Wpx;
    height: Hpx;
}
Posted by: Guest on August-29-2020
0

how to place a table in center in css

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

css center table on page

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

how to align table in html

.centerTable { margin: 0px auto; }
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language