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

@model Model.Common.CameraPopupModel


如何在CSS中将Model.CustomHeight设置为max-height属性

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


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

最佳答案

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

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

08-26 16:08
查看更多