关于Bootstrap 4 - Navbar顶部放置

时间:2016-06-21 14:17:27

标签: html css twitter-bootstrap

我正在使用Bootstrap 4.
我有一个关于Navbar“Fixed top”类的问题。 http://v4-alpha.getbootstrap.com/components/navbar/#placement
Navbar“Fixed top”类涵盖内容。

如下面的演示,Navbar涵盖<div class="jumbotron">,我希望Navbar不会覆盖它,我该怎么办?

我不知道如何阻止Navbar覆盖内容,因为设备的大小是可见的。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">

    <link href="https://cdn.bootcss.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdn.bootcss.com/tether/1.3.2/css/tether.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-fixed-top navbar-light bg-faded">
    <a class="navbar-brand" href="#">Navbar</a>
    <ul class="nav navbar-nav">
        <li class="nav-item active">
            <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
        </li>
    </ul>
    <form class="form-inline pull-xs-right">
        <input class="form-control" type="text" placeholder="Search">
        <button class="btn btn-success-outline" type="submit">Search</button>
    </form>
</nav>
<div class="jumbotron">
    <h1 class="display-3">Hello, world!</h1>
    <p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
    <hr class="m-y-2">
    <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
    <p class="lead">
        <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
    </p>
</div>

<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/tether/1.3.2/js/tether.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js"></script>
</body>
</html>

5 个答案:

答案 0 :(得分:24)

尝试在Bootstrap 4 Alpha6上使用sticky-top代替fixed-top,这对我有用。

答案 1 :(得分:0)

在我看来,最好的方法是将封闭标记设置为其覆盖的其余内容,并在 css 中设置 margin-top 属性 vw vh 百分比(具体取决于您的使用案例),以确保顶部的固定栏不会隐藏任何内容。即使我建议使用 @media 控制器在< > CSS

有关您的问题的更多信息,您可以检查此主题: twitter bootstrap navbar fixed top overlapping site

答案 2 :(得分:0)

您可以使用css

解决此问题
<style>
  body {
     margin-top: 50px;
  }
</style>

答案 3 :(得分:0)

使用:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

如w3schools.com上显示here

4.0.0版本的bootstrap css无法正常运行。我有同样的问题,并用3.3.7版本替换修复它。

答案 4 :(得分:0)

您可以使用class .sticky-top或使用自定义CSS

克服此问题
body{
    padding-top: 70px;    
    z-index: 0;
}