我试图复制一些使用媒体查询到MVC5 web项目中的视图的例子
但是它总是给出错误
system.media is a namespace and cannot be used as an expression
我怎样才能绕过这个?我是否需要额外的文件或参考资料?
看起来@@对于Razor的vbhtml页面是必需的
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body { background-color: yellow;}
@@Media only screen and (max-width: 600px) {
body {
background-color: blue;
}
}
</style>
</head>
<body>
<h1>The @@Media Rule</h1>
<p>Resize the browser window. When the width of this document is 600 pixels or less, the background-color is "lightblue", otherwise it is "yellow".</p>
</body>
</html>