我有一个热毛巾SPA应用程序,其中我使用微风风格和一些自定义CSS。 我包含样式文件的顺序如下:
bundles.Add(
new StyleBundle("~/Content/css")
.Include("~/Content/durandal.css")
.Include("~/Content/toastr.css")
.Include("~/Content/bootstrap.css")
.Include("~/Content/bootstrap-responsive.css")
.Include("~/Content/app.css")
);
我在app.css中将几个样式应用于body元素:
body {
font-size: 18px;
margin: 0 auto;
max-width: 1100px;
height:1200px;
overflow-y:scroll;
}
当我在本地和生产中检查身体css时,我发现在生产中,没有应用max-width和height属性。 css在本地而非生产中工作的原因是什么?