为什么我的StyleBundle中的引导样式没有加载?

时间:2013-10-01 03:51:51

标签: asp.net-mvc twitter-bootstrap styles bundle

我正在尝试使用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>网络>样式表选项卡,我没有看到引导样式,但我可以看到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" />

我也没有在浏览器中看到任何错误。我错过了bootstrap有什么特别之处吗?

1 个答案:

答案 0 :(得分:3)

你的代码声明:../ boostrap / ...你应该使用/ bootstrap /。这是一个简单的错字。