Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with justified dropdown nav pills #10516

Closed
Ddjay opened this issue Sep 7, 2013 · 3 comments
Closed

Issue with justified dropdown nav pills #10516

Ddjay opened this issue Sep 7, 2013 · 3 comments

Comments

@Ddjay
Copy link

Ddjay commented Sep 7, 2013

<ul id="nav" class="nav nav-pills nav-justified">
 <li class="dropdown">
  <a class="dropdown-toggle" data-toggle="dropdown" href="#">  Menu <span class="caret"></span></a>
  <ul class="dropdown-menu">
    <li><a href="?tab=XXX">XXX</a></li>
    <li><a href="?tab=YYY">YYY</a></li>
    <li><a href="?tab=ZZZ">ZZZ</a></li>
  </ul>
 </li>
</ul>

Is not working correctly with Firefox 23.0.1. I have to set .dropdown-menu top and left to auto like this:

.dropdown-menu {
    top: auto;
    left: auto;
}

If I dont do that, the .dropdown-menu is at the bottom right of the page ... but it works without that on Safari, I am on a mac with Safari 7.0 and Firefox 23.0.0.1

@D-dc
Copy link

D-dc commented Sep 18, 2013

I can confirm this.
On windows the same problem occurs in the latest firefox version. Latest chrome and IE are fine.

@mdo
Copy link
Member

mdo commented Sep 22, 2013

Cross referencing: #9401 and #10552.

@mdo
Copy link
Member

mdo commented Oct 26, 2013

Yup, the fix above looks good, though I'll have to check in IE later. I'll see about getting this into v3.0.1 for next week.

@mdo mdo closed this as completed in 67cab7f Oct 29, 2013
stempler pushed a commit to stempler/bootstrap that referenced this issue Apr 11, 2014
stempler pushed a commit to stempler/bootstrap that referenced this issue Nov 4, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants