在html中的表格中添加行

时间:2013-06-18 15:52:06

标签: html css html5 razor html-table

我有一个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>,也不会显示表格内的行。

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

2 个答案:

答案 0 :(得分:1)

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

<table style="border: 1px solid black;">

答案 1 :(得分:1)

您也可以写

<table border="1">

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