Bootstrap Navbar Collapse problem with firefox

1

I recently started working with Bootstrap and am trying to create a navbar .

The problem is that navbar appears to be normal until we decrease the size of the window where it gives collapse as it should, but the toggle button only works in Google Chrome:

<div class="navbar navbar-inverse navbar-static-top">
  <div class="container">
    <a href="#" class="navbar-brand">RaminhaGest</a>            
    <button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">F</button>
    <div class="collapse navbar-collapse navHeaderCollapse">
      <ul class="nav navbar-nav">
        <li><a href="#">Home</a></li>
      </ul>
    </div>
  </div>
</div>
    
asked by anonymous 03.03.2014 / 19:15

1 answer

1

I found my problem:

I only had one item on the list, and since the Google Chrome and Firefox animations are slightly different, this did not appear correctly.

With more items already working right.

    
03.03.2014 / 20:22