如何在 HTML 中使表格单元格中的文本居中?


我们使用 CSS 属性 text-align,来使表格单元格中的文本居中。我们在表格单元格中使用内嵌式、内部样式表来对齐文本。

CSS 的 text-align 属性设置 <th><td> 中文本对齐方式。

默认情况下,<th> 中的文本居中对齐,<td> 中的文本左对齐。我们可以覆盖其他属性来更改对齐方式。

我们还可以将对齐值更改为左对齐或右对齐。

语法

以下是使表格的 tag 中的文本居中的语法。

<th style="text-align: center">Table header...</th>

以下是使表格的 <td> tag 中的文本居中的语法。

<td style="text-align: center">Table header...</td>

示例 1

以下是使 HTML 中的表格单元格中的文本居中的示例。

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> table,tr,th,td { border:1px solid black; } </style> </head> <body> <table style="width: 50%"> <caption style="text-align: center; ">Employees</caption> <tr> <th style="text-align: center">EmployeeName</th> <th style="text-align: center">EmployeeId</th> </tr> <tr> <td style="text-align: center">Yadav</td> <td style="text-align: center">022</td> </tr> <tr> <td style="text-align: center">Abdul</td> <td style="text-align: center">025</td> </tr> <tr> <td style="text-align: center">Jason</td> <td style="text-align: center">208</td> </tr> </table> </body> </html>

以下是对上述示例程序的输出。

示例 2

我们来看另一个示例 -

<!DOCTYPE html> <html> <head> <style> table, td, th { border: 1px solid black; width: 300px; } </style> </head> <body> <h1>Authors</h1> <table> <tr> <th>Alchemist</th> <th>Rich Dad Poor Dad</th> </tr> <tr> <td style="text-align:center">Paulo Coelho</td> <td style="text-align:center">Robert Kiyosaki</td> </tr> </table> </body> </html>

更新日期:2023 年 8 月 31 日

12.4 万次浏览

开启您的 职业生涯

通过完成课程来获得认证

开始学习
广告