0

我是 Bootstrap 和 Less 的新手并且正在苦苦挣扎..

我正在尝试从以下站点复制样本,但它们看起来不像应有的那样。我究竟做错了什么? http://bootsnipp.com/snipps/credit-card-payment-form-2

我已经通过 Nuget 安装了“Bootstrap Less Source”,还安装了“Bundle Transformer: LESS”以将 Less 转换为 CSS。我还修改了我的 MVC BundleConfig.cs

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
                    "~/Scripts/bootstrap.js"));
bundles.Add("~/Content/css").Include(
                    "~/Content/site.less",
                    "~/Content/bootstrap/bootstrap.less");

我已更新我的视图以包含以下内容:

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

谢谢

4

1 回答 1

0

看起来我的问题与 Bootstrap 的版本有关。我使用的是 v3.0.0.0,而我正在查看的样本在 v2.3.2 中

我添加以下链接后,一切正常。

<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">

谢谢

于 2013-10-01T00:02:19.310 回答