我正在尝试使用 ASP.NET MVC 4 构建网站。我的项目带有一个 css 文件,该文件会影响我所有使用主布局 (_Layout.cshtml) 的视图。我希望能够根据视图使用三种不同背景颜色中的一种,我需要帮助。这是我到目前为止所拥有的:
/* main layout
----------------------------------------------------------*/
.content-wrapper {
margin: 0 auto;
max-width: 960px;
}
#body {
background-color: #eb6f5c;
clear: both;
padding-bottom: 35px;
}
#body#Geldi {
background-color: #a0f3ab;
clear: both;
padding-bottom: 35px;
}
#body#Login {
background-color: #e8f3a0;
clear: both;
padding-bottom: 35px;
}
footer {
clear: both;
background-color: #e2e2e2;
font-size: .8em;
height: 100px;
}
研究并没有让我走得更远。我所有的页面仍然是粉红色(#eb6f5c)。如何告诉 Visual Studio 我想为特定视图使用“Geldi”主体类型或“登录”主体类型?