在我的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>
实现这一目标的最佳做法是什么?
答案 0 :(得分:2)
像这样,假设style
在视图中:
<style>
.customBootboxWidth {
width: 1300px;
}
.restrictBodyHeight {
max-height: @(Model.CustomHeight)px;
overflow-y: auto;
}
</style>