Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #8815
Closed
Open
Issue created Jul 29, 2013 by Administrator@rootContributor

Unexpected rendering with .navbar-text

Created by: UncleFup

Latest Chrome and Safari on Mountain Lion.

I have provided three snippets of markup below with screenshots. It appears that an element with class .navbar-text stacks above any following elements, including other elements of the same class. The behavior seems consistent regardless of the positioning of the navbar.

This:

<div class="navbar navbar-fixed-bottom">
  <nav class="container" role="navigation">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".footer-nav">
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="#">Brand</a>
    <p class="navbar-text">Navbar Text</p>
    <div class="nav-collapse collapse navbar-responsive-collapse bottom_navigation_bar"">
      <ul class="nav navbar-nav">

 . . .

      </ul>
    </div>
  </nav>
</div>

renders like this: screen shot 2013-07-29 at 5 56 05 pm

and this:

<div class="navbar navbar-fixed-bottom">
  <nav class="container" role="navigation">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".footer-nav">
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <p class="navbar-text">Navbar Text</p>
    <a class="navbar-brand" href="#">Brand</a>
    <div class="nav-collapse collapse navbar-responsive-collapse bottom_navigation_bar"">
      <ul class="nav navbar-nav">

 . . .

      </ul>
    </div>
  </nav>
</div>

renders as: screen shot 2013-07-29 at 6 02 17 pm

But, this:

<div class="navbar navbar-fixed-bottom">
  <nav class="container" role="navigation">
    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".footer-nav">
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
      <span class="icon-bar"></span>
    </button>
    <a class="navbar-brand" href="#">Brand</a>
    <div class="nav-collapse collapse navbar-responsive-collapse bottom_navigation_bar"">
      <ul class="nav navbar-nav">

 . . .

      </ul>
    </div>
    <p class="navbar-text">Navbar Text</p>
  </nav>
</div>

renders like this: screen shot 2013-07-29 at 5 59 33 pm

Since I am registering a complaint, I also want to say thank you to all the contributors for the hard work. I especially like where the project is headed in this version.

Assignee
Assign to
Time tracking