.net框架,mvc和visual studio的新手,所以这可能是一个简单的问题。无论出于何种原因,尽管经过数小时的试验和错误,但在使用使用新MVC应用程序创建的默认布局时,我无法获取整个页面的视图。
我尝试了各种css技巧,将元素扩展到100%的高度,但没有,但没有这样的运气。有没有办法使用bootstrap来做到这一点?如果没有,有关如何在不影响引导程序的情况下做任何建议吗?
通过实现"行"我已经能够使宽度跨越整个页面。类。这个高度成分仍然难以捉摸。
_layout.cshtml
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<title>@ViewBag.Title - Crestwood Weather</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("Crestwood Weather Viewer", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home") </li>
</ul>
@Html.Partial("_LoginPartial")
</div>
</div>
</div>
<div class="container-fluid body-content">
@RenderBody()
<hr />
<footer>
<p>© @DateTime.Now.Year - Crestwood Midstream Partners LP</p>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
看起来HTML和视图的主体仅限于布局中的某些内容,将其限制为页面高度的一半。即使在操作HTML和Body标签时,内容仍然显示为低于。
示例
答案 0 :(得分:1)
您可以使用boostrap类“容器流体”在全屏上显示。
答案 1 :(得分:0)
在Content目录中有一个site.css文件,在此文件中修改max-width:960px;
答案 2 :(得分:0)
我认为这会对你有帮助..
在javascript中编写这样的代码..
<script>
$(document).ready(function () {
ResizeContentContainer();
});
window.onresize = ResizeContentContainer;
function ResizeContentContainer() {
var windowHeight = $(window).height();
$(".body-content").outerHeight(windowHeight + "px");
}
</script>
这会根据窗体的高度添加身高,当你重新调整大小时,它会自动计算你身体内容的高度。