Answers for "horizontal align table-cell html"

CSS
0

how to center the table horizontally css

table
{ 
    margin-left: auto;
    margin-right: auto;
}
Posted by: Guest on August-20-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