从MVC的模型中以编程方式设置css值

时间:2015-01-20 08:27:33

标签: css .net asp.net-mvc

在我的cshtml文件中,我有以下模型指令

@model Model.Common.CameraPopupModel

如何将Model.CustomHeight设置为css

中的max-height属性
<style>
    .customBootboxWidth {
        width: 1300px;
    }
     .restrictBodyHeight {
         max-height: 420px; /*set Model.Height here instead of hardcoding */
         overflow-y: auto;            
     }
</style>

实现这一目标的最佳做法是什么?

1 个答案:

答案 0 :(得分:2)

像这样,假设style在视图中:

<style>
    .customBootboxWidth {
        width: 1300px;
    }
    .restrictBodyHeight {
        max-height: @(Model.CustomHeight)px;
        overflow-y: auto;            
    }
</style>