Answers for "align table to left in html"

0

table align

<!-- Center table in page -->
<table align="center">
...
</table>

<!-- Center content of table -->
<table>
  <thead style="text-align:center">
    <tr>
      <th>...</th>
    </tr>
  </thead>
  <tbody style="text-align:center">
    <tr>
      <th>...</th>
    </tr>
  </tbody>
</table>
Posted by: Guest on January-15-2022
0

html table td right align

<td class='alnright'>text to be aligned to right</td>

<style>
    .alnright { text-align: right; }
</style>
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language