문제

Is there any way to make the li elements in the navbar closer to each other?

This is what I got now: http://www.bootply.com/JTr4LHykbe

도움이 되었습니까?

해결책

Just mention width : auto and it will work fine

.navbar-default .navbar-nav>li {
width: auto;
}

If you mention any static width to li then if any of the text is too big then it will overflow the li tag.

to make the navbar center:

 .navbar {
  background: transparent;
  border: none;
  float: none;
  width: 50%; // adjust it as you want
  margin: auto;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top