根据条件在表之间添加空格

时间:2014-01-09 11:51:03

标签: css asp.net-mvc

从我从模型和示例视图收到的数据动态在我的mvc视图中形成行和列如下所示

for(...)
{
    <tr>

        if()
        {
        <td>
        ---Dynamic content
        </td>
        elseif()
        {
        <td>
        ---Dynamic content
        </td>
        }
        else()
        {
        <td>
        ---Dynamic content
        //In case of else execution i need to add space for the next formed <tr>
        </td>
        }
        }
    </tr>
}

根据某些特定条件形成表格行,一切都运行良好,在上面的代码中我需要<tr> 添加空格,以防其他块<td&gt ;成立了。

如果是其他块执行,它将转到下一个<tr&gt;我需要以某种方式在<tr>形成之前添加一个空格。

代码看起来很乱用表和循环,但想要一个解决方案,我可以根据条件在<tr>之间动态添加空间。

由于

1 个答案:

答案 0 :(得分:0)

怎么样......?

else()
{
    <td><!-- use this as a spacer row --></td>
    </tr>
    <tr>
    <td>
    ---Dynamic content
    //In case of else execution i need to add space for the next formed <tr>
    </td>
}