我是 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")
谢谢