在 HTML 中,可以使用三種方法讓表格居中:使用 margin: auto; 屬性使表格水平居中。使用 text-align: center; 屬性在父元素內垂直居中表格。使用 align 屬性指定表格相對於父元素的位置(棄用)。
如何讓HTML 表格居中
在HTML 中,有幾種方法可以讓表格居中:
1. 使用margin: auto;
margin: auto;
屬性,可以讓表格在水平方向上居中。 範例:
<code class="html"><table style="margin: auto;"> <tr> <th>列 1</th> <th>列 2</th> </tr> <tr> <td>数据 1</td> <td>数据 2</td> </tr> </table></code>
2. 使用text-align: center;
text-align: center;
屬性,可以讓表格在父元素內垂直居中。 範例:
<code class="html"><div style="text-align: center;"> <table border="1"> <tr> <th>列 1</th> <th>列 2</th> </tr> <tr> <td>数据 1</td> <td>数据 2</td> </tr> </table> </div></code>
3. 使用align 屬性
align
屬性,可以指定表格相對於其父元素的位置。 範例:
<code class="html"><table align="center"> <tr> <th>列 1</th> <th>列 2</th> </tr> <tr> <td>数据 1</td> <td>数据 2</td> </tr> </table></code>
注意:
屬性在HTML5 中已棄用,應優先使用
margin 或
text-align 屬性。
以上是html中表格怎麼居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!