如何在剃刀@if中添加间距保证金?

时间:2011-10-22 08:02:17

标签: asp.net-mvc-3 razor

@if语法中不允许


<...

问:如何在剃刀@if {}块中添加间距/边距?

@if (User.IsInRole("Admin"))
{      
   @* I need to add certain bottom margin here *@
}
else
{
   @* I need to add certain bottom margin here *@    
}

 @*  More stuff down here ... *@

1 个答案:

答案 0 :(得分:1)

@{
    var margin = string.Empty;
    if (condition1)
    {
       margin = "10px";;
    }
    else if (condition2)
    {
       margin = "20px";
    } 
}

<div style="margin-bottom: @margin">
 my stuff
</div>

这是实现这一目标的众多方法之一