在导航链接bootstrap scrollspy下面添加一行

时间:2014-03-18 12:42:37

标签: css css3 twitter-bootstrap scrollspy

我正在搞乱引导滚动间谍,我无法弄清楚如何在当前部分的链接下面一行。

应该很简单,但我无法得到它!我希望它看起来像这样:

enter image description here

所以你在投资组合部分,反过来投资组合将突出显示下面的愚蠢的小线。任何人都可以帮忙吗?如果需要,您可以查看live version here

1 个答案:

答案 0 :(得分:1)

自定义类:

.navbar .nav li.active:after {
   content: "\f1ac";
   font-family: Ionicons;
   font-style: normal;
   font-size: 42px;
   color: #fff;
   position: absolute;   // <---- Add this 3 lines to center icon
   width: 100%;
   text-align: center;
}