Bootstrap ASP.NET MVC -默认布局为全屏

nvbavucw  于 2023-11-15  发布在  Bootstrap
关注(0)|答案(4)|浏览(161)

新的.net框架,mvc和visual studio,所以这可能是一个简单的问题。无论出于什么原因,尽管几个小时的试验和错误,我不能让我的意见,以占用整个页面时,使用默认布局,是创建一个新的MVC应用程序。
我尝试过各种css技巧来扩展元素到100%的高度,但没有这样的运气。有没有一种方法可以使用 Bootstrap 来做到这一点?如果没有,有什么建议,如何做到这一点而不影响 Bootstrap ?
我已经能够通过实现“row”类来获得跨越整个页面的宽度,但其中的高度组件仍然难以捉摸。

_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>&copy; @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和身体标签,内容仍然显示如below.

示例


的数据

f0ofjuux

f0ofjuux1#

您可以使用 Bootstrap 类“container-fluid”来全屏显示。

wb1gzix0

wb1gzix02#

在Content目录下有一个site.css文件,在这个文件中修改max-width:960 px;

uqdfh47h

uqdfh47h3#

我想这会对你有帮助。
用JavaScript写代码。

<script>

    $(document).ready(function () {
        ResizeContentContainer();

    });

    window.onresize = ResizeContentContainer;

    function ResizeContentContainer() {

        var windowHeight = $(window).height();
        $(".body-content").outerHeight(windowHeight + "px");
    }
</script>

字符串
这将根据窗口向身体内容添加高度,当您重新调整大小时,它将自动计算身体内容的高度。

2o7dmzc5

2o7dmzc54#

我终于解决了同样的问题,只需在your _layout ->中添加此内容

<style>
html{
height:100%;
}
body{
height:100%
}
</style>

字符串

相关问题