1

我有一个 asp.net MVC4 应用程序,我在视图中有这个表Projet

<table style="line-height:30px; ">
    <tr>
        <th style="width:20%;color:blue">
            Description de projet
        </th>
        <th style="width:20%;color:blue">
            Le client
        </th>
        <th style="width:20%;color:blue">
            Le statut du client
        </th>
        <th style="width:20%;color:blue">
            Le groupe responsable
        </th>

    </tr>

@for (int i = 0; i < Model.Count; i += 4) {
    <tr>
        <td style="width:20%">
            <center>@Model[i]</center>
        </td>
        <td style="width:20%">
            <center>@Model[i+1]</center>
        </td>
        <td style="width:20%">
            <center>@Model[i+2]</center>
        </td>
         <td style="width:20%">
            <center>@Model[i+3]</center>
        </td>

    </tr>
}

</table>

我的问题是:即使我使用了标签,表格内的行也不会显示<th>

为什么会这样?我该如何解决?

4

2 回答 2

1

要显示边框,您可以使用:-

<table style="border: 1px solid black;">
于 2013-06-18T15:56:15.020 回答
1

你也可以这样写

<table border="1">

用于显示水平和垂直的边框和线条。

于 2013-06-18T16:08:18.573 回答