MVC 4 アプリ (インターネット テンプレート) を作成しました。作成された本文は、幅 1903 ピクセル、高さ 300 ピクセルです。下の画像では、どのようにレンダリングされているかを確認できます。幅が指定されている場所はどこにもありません。なぜ幅 1903 ピクセル (および高さ 300 ピクセル) を作成することにしたのか知りたいです。
役立つ場合、メイン ページの HTML は次のようになります。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title - The Exchange Site</title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<header>
<div class="content-wrapper">
<div class="float-left">
<img src="~/Images/CompanyLogo.png">
</div>
<div class="float-right">
<section id="login">
@Html.Partial("_LoginPartial")
</section>
<nav>
<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
</nav>
</div>
</div>
</header>
<div id="body">
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year - Siesta Key Software, LLC</p>
</div>
</div>
</footer>
@Scripts.Render("~/bundles/ExchangeSite")
@RenderSection("scripts", required: false)
</body>
</html>