gpt4 book ai didi

html - 引导导航栏垂直显示而不是水平显示

转载 作者:可可西里 更新时间:2023-11-01 13:22:54 25 4
gpt4 key购买 nike

在我的页面上,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">
<title>
Home | Bootstrap
</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="#">My bootstrap application</a>
<ul class="nav navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<form class="form-inline pull-xs-right">
<input class="form-control" type="text" placeholder="Search" />
<button class="btn btn-primary" type="submit">Search</button>
</form>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>hello world!</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
Bootstrap 4
</div>
</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>

Sample

这是为什么呢?根据文档,默认情况下它应该是水平的。

最佳答案

nav 元素中添加 navbar-toggleable-md 类,使其在 md View 中看起来水平:

See this fiddle

Docs :

适用于 Bootstrap 4 alpha 的原始答案。对于 Bootstrap 4.0+navbar-toggleable-* 类已更改为 navbar-expand-*。使用 navbar-expand-* 类之一来保持导航栏水平。

关于html - 引导导航栏垂直显示而不是水平显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44136654/

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