我基于新的Bootstrap 3模板生成了一个新的asp.net mvc项目。这似乎无法正常工作,因为它不会在标题导航栏和Renderbody()
下面呈现的内容之间添加任何间距。我尝试在Bootstrap网站上粘贴示例并在创建新页面时使用Visual Studio提供的css,但没有运气。
我附上了以下图片来描述(注意jumbotron和标题之间没有间距):
这是生成的标记:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li>@Html.ActionLink("Logout", "Index", "Home")</li>
</ul>
<p class="navbar-text navbar-right">
Logged in as @(User.Identity.Name)
</p>
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>© @DateTime.Now.Year - My ASP.NET Application</p>
</footer>
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
这里非常感谢任何帮助。
答案 0 :(得分:1)
这不是由bootstrap控制,而是由Site.css文件控制
body {
padding-top: 50px;
padding-bottom: 20px;
}
通过将padding-top值更改为例如75或100,导航栏和内容之间存在差距