居中對齊HTML 表格內容
使用HTML 表格時,可能需要垂直和水平對齊單元格的內容更具視覺吸引力的結果。以下是實現此目的的方法:
水平和垂直居中文字
<code class="html"><td style="text-align: center; vertical-align: middle;">Text</td></code>
<code class="css">td { text-align: center; vertical-align: middle; }</code>
以下是一個範例,展示了兩者方法:
<code class="html"><table> <tr> <td style="text-align: center; vertical-align: middle;">Centered Cell</td> <td style="text-align: center; vertical-align: middle;">Centered Cell</td> </tr> </table> <table border="1" id="cssTable"> <tr> <td>Centered Cell</td> <td>Centered Cell</td> </tr> </table></code>
<code class="css">#cssTable td { text-align: center; vertical-align: middle; }</code>
這些技術使您可以輕鬆地將HTML 表格的內容居中,從而產生更加用戶友好且視覺上更有吸引力的界面。
以上是如何居中對齊 HTML 表格內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!