我有以下内容:
@if (Model.PageMeta.Sidebar == PageMetaSidebar.Small) { Html.RenderPartial("_SmallSidebar"); }
并在我的包含文件中:
<style "text/css">
#sbr { width: 193px; }
#lft { left: 205px; top: 85px; right: 5px; bottom: 30px; }
#top { left: 215px; top: 85px; right: 15px; }
#btm { left: 215px; right: 15px; bottom: 30px; }
#mdl { left: 215px; top: 85px; right: 15px; bottom: 30px; }
@media print {
div#lft {left:10px; right: 10px; top: 0px;}
div#top {left:20px; right: 20px; top: 0px;}
div#btm {left:20px; right: 20px; }
div#mdl {left:20px; right: 20px; top: 0px;}
}
}
</style>
然而,这给了我一个编译类型错误:
_SmallSidebar.cshtml(7): error CS0103: The name 'media' does not exist in the current context
有没有人知道如何解决这个问题所以它接受@media不是需要评估的东西?
答案 0 :(得分:160)
您可以使用剃刀忽略的@@
并打印一个@
。