Answers for "table th align center"

CSS
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
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

css center table on page

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

center table html

<center>
        <table>
            <tr>
              <td>text 1</td>
              <td>text 2</td>
              <td>text 3</td>
            </tr>
       </table>
    </center>
Posted by: Guest on February-02-2022

Browse Popular Code Answers by Language