gpt4 book ai didi

html - 如何突破页面宽度限制

转载 作者:行者123 更新时间:2023-11-28 16:28:13 24 4
gpt4 key购买 nike

非常简单,我希望 ASP.NET 页面占据整个屏幕宽度。 100% 不是 100%,我尝试了很多建议,但都失败了。我确信这是一行简单的代码,但我似乎并没有触及它。

如果您需要代码片段,请告诉我,但我认为这不会有帮助。

谢谢。

enter image description here

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="mytestsite.com.Site1" %>
<!DOCTYPE html>
<html lang="en">
<head runat="server">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%: Page.Title %></title>

<webopt:bundlereference runat="server" path="~/Content/css"/>
<link href="~/Content/bootstrap.css" type="text/css" rel="stylesheet"/>
<script src="~/Scripts/jquery-2.2.4.min.js" type="text/js"></script>
<script src="~/Scripts/bootstrap.js" type="text/js"></script>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />

<asp:PlaceHolder runat="server">
<%: Scripts.Render("~/bundles/modernizr") %>
</asp:PlaceHolder>
</head>
<body style="resize:both; margin:0%; height:100%; width:100%;">
<form runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" ScriptMode="Release" LoadScriptsBeforeUI="true">
<Scripts>
<%--Framework Scripts--%>
<asp:ScriptReference Name="MsAjaxBundle" />
<asp:ScriptReference Name="jquery" />
<asp:ScriptReference Name="bootstrap" Path="~/Scripts/bootstrap.js" />
<asp:ScriptReference Name="respond" />
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
<asp:ScriptReference Name="WebFormsBundle" />
<%--Site Scripts--%>
</Scripts>
</asp:ScriptManager>

<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>
<a class="navbar-brand" runat="server" href="~/"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a runat="server" href="~/">Return to My Test Site Home</a></li>
<li><a runat="server" href="~/">Bin Shredding - Overview</a></li>
<li><a runat="server" href="~/">Facility Questionnaire</a></li>
<li><a runat="server" href="~/">Bin Shredding FAQ</a></li>
</ul>
<p class="nav navbar-text navbar-right"></p>
</div>
</div>
</div>
<div class="container body-content">
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
<hr />
<footer>
<p>&copy; <%: DateTime.Now.Year %> - My Test Site</p>
</footer>
</div>

</form>

DOM 捕获,根据请求。

enter image description here

最佳答案

看起来您正在使用 Bootstrap 。在 html 标记中,您有一个带有类容器的 div。如果你查看 bootstrap css,你会看到有一个样式附加到那个指示最大宽度的样式,可能是 1170px 之类的东西。下载 Bootstrap 包时有各种值和/或可以自定义。

最简单的更改方法是将容器类更改为 container-fluid。也可以编辑和更改 css 文件,但这很复杂,因为有许多不同的媒体查询,其中定义了 .container 的最大宽度。

关于html - 如何突破页面宽度限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41027309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com