Answers for "table column center align"

CSS
1

how to set the first column of the table in center in css

tr > td:first-child {
    text-align: center;
}
Posted by: Guest on October-25-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

Code answers related to "table column center align"

Browse Popular Code Answers by Language