Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的网站的代码后面附加了 css 文件。我可以在我的网页上显示 css 样式 Visual Studio 设计时间,但是当我运行 web 项目时 css 样式无法显示。我使用 expoleer 8 和 firefox 13.0。我也可以显示 css 样式我的其他网站项目。我忘记了这个网站是什么?谢谢。
<link rel="Stylesheet" href="Themes/default.css" type="text/css" />
.net 中有一个方便的助手,可以解决您可能遇到的任何路径问题:
<link href="<%=Url.Content("~/Themes/default.css") %>" rel="stylesheet" type="text/css" />
如果您不确定它是否有效,请将您的 css 文件替换为非常简单的内容:
body { background-color: Aqua; }
这将有助于检查问题是否是:
或者