0

我从 nu-get 安装 twitter.bootstrap.mvc4。我面临的问题与之前提出的这个问题类似:

使用 Twitter Bootstrap,为什么我的 div.container 比 Bootstrap 网站上使用的要窄?

但与该问题的答案不同,我验证了在 BootstrapBundleConfig.RegisterBundles() 方法中,bootstrap.css 和 bootstrap-responsive.css 都存在,如下所示。

public class BootstrapBundleConfig
{
    public static void RegisterBundles(BundleCollection bundles)
    {
        bundles.Add(new ScriptBundle("~/js").Include(
            "~/Scripts/jquery-{version}.js",
            "~/Scripts/jquery-migrate-{version}.js",
            "~/Scripts/bootstrap.js",
            "~/Scripts/jquery.validate.js",
            "~/scripts/jquery.validate.unobtrusive.js",
            "~/Scripts/jquery.validate.unobtrusive-custom-for-bootstrap.js"
            ));

        bundles.Add(new StyleBundle("~/content/css").Include(
            "~/Content/bootstrap.css",
            "~/Content/body.css",
            "~/Content/bootstrap-responsive.css",
            "~/Content/bootstrap-mvc-validation.css"
            ));
    }
}

所以我的问题是为什么页面看起来很窄,不像来自 twitter bootstrap http://twitter.github.com/bootstrap/components.html的页面,我应该做些什么来修复?

4

0 回答 0