Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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>
 
PREVIOUS NEXT
Tagged: #table #align
ADD COMMENT
Topic
Name
6+2 =