0

我正在尝试使用 StyleBundle 将引导样式添加到现有项目中。同一包中的其他样式有效,但引导样式无效。这是我的捆绑包:

        bundles.Add(new StyleBundle("~/bundles/css").Include(
            "~/Content/boostrap/boostrap.css",
            "~/Content/boostrap/boostrap-responsive.css",
            "~/Content/boostrap/boostrap-theme.css",
            "~/Content/font-awesome.css",
            "~/Content/Site.css"));

@Styles.Render("~/bundles/css")
@Scripts.Render("~/bundles/modernizr")

在 Google Chrome > F12 > Network > Stylesheets 选项卡中,我看不到引导样式,但我可以看到 font-awesome.css 和 site.css 样式。

但是,如果我将样式拖放到 index.html 页面标题中,我可以看到它们。

<link href="~/Content/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="~/Content/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link href="~/Content/bootstrap/bootstrap-theme.css" rel="stylesheet" />

我也没有在浏览器中看到任何错误。我错过了引导程序有什么特别的吗?

4

1 回答 1

3

Your code states: ../boostrap/... you should be using /bootstrap/. So a simple typo.

于 2013-12-08T18:40:12.743 回答