我有这个标志:
<div class= navbar >
<div class= navbar-inner >
<div class= container >
<a class= btn btn-navbar data-target= .nav-collapse data-toggle= collapse >
<span class= icon-bar ></span>
<span class= icon-bar ></span>
<span class= icon-bar ></span>
</a>
<div class= nav-collapse >
<ul class= nav >
<li class= active >
<a href= # >Home</a>
<a href= # >Option 2</a>
<a href= # >Option 3</a>
</li>
</ul>
</div>
</div>
</div>
</div>
It renders ok when the screen is full, but when I collapse the screen, it does not show the button which expands to show the options. Is there something I am not doing correctly? Any idea why the button is not being shown after screen collapse?
感谢!