我在 MVC 4 中开始了一个新的“基本”项目。当涉及到样式时,我在 Content 文件夹中的 css 文件没有被拾取。
我已经在 _layout.cshtml 文件中包含了链接 href 等,但仍然没有发生任何事情。
当我将 css 文件移动到 Controllers 文件夹并更改 _layout.cshtml 文件中的路径时,将应用样式。
有没有其他人有这个问题?
我在 _Layout.cshtml 文件中尝试了以下内容:
<link href="@Url.Content("~/Content/Main.css")" rel="stylesheet" type="text/css" />
<link href="../../Content/Main.css" rel="stylesheet" type="text/css" />
在 CSS 文件中:
body{ background-color:Blue; }
谢谢