在页面加载时折叠导航栏

时间:2021-07-28 23:39:24

标签: javascript html css bootstrap-4

我在页面顶部添加了导航栏按钮。问题是当我第一次加载我的页面时,导航栏默认是展开的。下面是我的代码。

<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-main" 
            aria-controls="navbar-collapse-main" aria-expanded="true" aria-label="toggle navigation">

<div class="collpase navbar-collapse" id="navbar-collapse-main">
// some content here
</div>

我需要在页面加载时保持导航栏折叠。我正在使用 Bootstrap 3.x。下面是我在手机上加载时的页面。我需要保持顶部导航栏最初折叠,只有当用户点击三个水平线时才应该展开。

enter image description here

1 个答案:

答案 0 :(得分:1)

默认情况下导航栏应该是折叠的。你的保持开放的原因是因为你的班级名称有错别字。将 collpase 更改为 collapse