使用偶数空格来证明Bootstrap导航栏导航列表项

时间:2016-06-21 19:26:34

标签: html css twitter-bootstrap twitter-bootstrap-3

我有一个带有几个列表项的导航栏菜单。我甚至需要它们之间的空白区域,这对我来说很难,因为有些列表项比其他列表项长。 enter image description here

我看过this question但它并没有解决我的问题,尽管我确实使用它来居中并证明导航栏的正确性。

这是一个bootply:http://www.bootply.com/UjY99PYpe7

2 个答案:

答案 0 :(得分:2)

在你的bootply中尝试这个css:

.navbar-nav {
    text-align: justify;
    min-width: 100%;
}
.navbar-nav:after {
    content: '';
    display: inline-block;
    width: 100%;
}
.navbar-nav li {
    display: inline-block;
    float:none;
}

答案 1 :(得分:1)

如果您希望按钮全宽

试试这个flexbox解决方案

.navbar-nav {
  width: 100%; 
  display: flex;
  flex-wrap: no-wrap;
  justify-content: space-between;
}

.navbar-nav > li {
  flex-grow: 1;
  text-align: center;
}