我的 CSS 文件未加载到我的 Asp.Net MVC 2 项目中

发布于 2024-10-14 22:37:27 字数 594 浏览 0 评论 0原文

我在默认 css 文件中添加了一些 css,以将 css 放入我的视图页面之一,但它没有加载

<ul id="timeline">
 <% foreach (var update in Model.Updates)
    { %> 
  <li>
  <div class="message"> .......

我放入默认文件中的 css 是

#timeline {list-style: none; padding:0;}
#timeline li {border-top: dashed 1px #888; padding: 5px 0;}
#timeline li:hover {background: #eee;}
#timeline li div.message {font-size: 10pt;}
#timeline li div.message span{font-weight: bold;}
#timeline li div.time {font-size: 8pt; font-style:italic;}

我在家用笔记本电脑上使用 vs2010...有什么想法吗?

I added some css to the default css file to put css in one of my view pages but its not loading

<ul id="timeline">
 <% foreach (var update in Model.Updates)
    { %> 
  <li>
  <div class="message"> .......

css I put in the default file is

#timeline {list-style: none; padding:0;}
#timeline li {border-top: dashed 1px #888; padding: 5px 0;}
#timeline li:hover {background: #eee;}
#timeline li div.message {font-size: 10pt;}
#timeline li div.message span{font-weight: bold;}
#timeline li div.time {font-size: 8pt; font-style:italic;}

I am using vs2010 on my home laptop...any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久夏青 2024-10-21 22:37:27

正如现场演示中所示,CSS 和假定的 HTML 标记工作正常。因此,您有以下任一情况:

  • HTML 与 CSS 规则不匹配 CSS
  • 文件未在您的应用程序中找到/包含,因为您指定了错误的路径

在任何情况下 FireBug 在诊断此类问题时非常有用。

As seen in this live demonstration the CSS and the supposed HTML markup work fine. So you have either:

  • HTML that doesn't match the CSS rules
  • The CSS file is not found/included in your application because you specified a wrong path to it

In any cases FireBug could be very useful in diagnosing this types of problems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文