CSS 边框 under/below 列表项

CSS border under/below list item

我有一个导航栏列表。我想在活动的 li 项目下面有一个边框,而不仅仅是在底部。

我已经能够使用 border-bottom 将边框添加到底部,但同样,它需要位于 li 元素下方。任何帮助将不胜感激。

除了默认的 Bootstrap 导航栏列表:

到目前为止,这是我的自定义 css
.nav .active{
    border-bottom: 5px solid yellow;
}

见下文:

举个例子.....使用 border-bottom 和 background-clip padding box

ul {
  list-style-type: none;
}
li {
  height: 50px;
  width: 180px;
  line-height: 50px;
  border-bottom: 5px solid transparent;
  background: #ddd;
  display: inline-block;
  text-align: center;
  background-clip: padding-box;
}
li:hover {
  border-bottom: 5px solid gold;
}
<ul>
  <li>Hello</li>
  <li>World</li>
</ul>

或者你可以试试方框阴影。看到这个

ul {
  list-style-type: none;
}
li {
  height: 50px;
  width: 180px;
  line-height: 50px;
  background: #ddd;
  display: inline-block;
  text-align: center;
}
li:hover {
  box-shadow: 0 5px 0 0 gold;
}
<ul>
  <li>Hello</li>
  <li>World</li>
</ul>

这样试试:demo

CSS:

ul.nav {
    list-style-type: none;
}
li {
    display:block;
    float:left;
    line-height: 26px;
    margin-right:10px;
    background-color:#ccc;
    padding:4px 10px;
    border-bottom: 5px solid transparent;
}
li a{
    text-decoration:none;
    color:#000;

}
li:hover, li.active {
    border-bottom: 5px solid red;
}

HTML:

<ul class="nav">
    <li><a href="#"> Menu 1</a>
    </li>
    <li class="active"><a href="#"> Menu 1</a>
    </li>
    <li><a href="#"> Menu 1</a>
    </li>
    <li><a href="#"> Menu 1</a>
    </li>
</ul>

对于像这样的小细节,我通常使用 :after 来使边框超出菜单项的正常高度。

HTML:

<ul>
    <li>Home</li>
    <li class="active">About</li>
    <li>Contact</li>
    <li>Blog</li>
</ul>
<div class="main"> 
    Next Box
</div>

CSS:

html,body{
    margin:0px;
    padding:0px;
}
ul{
    /* for looks */
    list-style:none;
    margin:0px;
    padding:0px;
}
li{
    background:black;
    color:white;
    display:inline-block;
    margin:0px;
    padding:5px 20px;
}
li.active{
    position:relative;
}
li.active:after{
    content:'';
    position:absolute;
    top:100%;
    left:0px;
    border-top:5px solid yellow;    
    width:100%;
}
.main{
    background-color:#dddddd;
    min-height:400px;
}

大部分 css 只是为了演示,但关键内容在 lili.active,以及 li.active:after.

您可以在 jsfiddle

查看我的演示

这是我一直使用的样本。希望这可以帮助你 ;)
此方法使用 "li" 元素的 last child 作为边框。
class "selected" on "li" element select the position of border to stay 最初.
当鼠标位于菜单栏按钮之一上时,该栏将跟随它播放动画。
如果你不想要动画,请删除 ALL transition CSS style in ".menu > li:last-child" class.

如果你想了解更多关于last child CSS风格,请到这里link >> http://www.w3schools.com/cssref/sel_last-child.asp

.menu, .menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.menu {
  margin: auto;
  position: relative;
  overflow: hidden;
  height: 25px;
}

.menu li {padding: 0px 5px;}

.menu > li {
text-align: center;
width: 80px;
font-size: 14px;
}

.menu > li > a {
  display: block;
  padding: 0px 0px;
  color: #444;
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.menu li a:hover {
  color: #ffa500;
}

.menu > li:last-child {
  position: absolute;
  top: 20px;
  right: -90px;
  height: 5px;
  width: 80px;
  background: #ffa500;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
 }

 .menu .selected {
  position: relative;
  pointer-events: none;
  cursor: default;
 }

.selected a {
  color: #ffa500 !important;
}

.menu li:nth-child(1):hover ~ li:last-child {
  -webkit-transform:translateX(-375px) !important;
  -moz-transform:translateX(-375px) !important;
  -ms-transform:translateX(-375px) !important;
  -o-transform:translateX(-375px) !important;
  transform:translateX(-375px) !important;
}
.menu li:nth-child(1).selected ~ li:last-child {
  -webkit-transform:translateX(-375px);
  -moz-transform:translateX(-375px);
  -ms-transform:translateX(-375px);
  -o-transform:translateX(-375px);
  transform:translateX(-375px);
}
.menu li:nth-child(2):hover ~ li:last-child {
  -webkit-transform:translateX(-280px) !important;
  -moz-transform:translateX(-280px) !important;
  -ms-transform:translateX(-280px) !important;
  -o-transform:translateX(-280px) !important;
  transform:translateX(-280px) !important;
}
.menu li:nth-child(2).selected ~ li:last-child {
  -webkit-transform:translateX(-280px);
  -moz-transform:translateX(-280px);
  -ms-transform:translateX(-280px);
  -o-transform:translateX(-280px);
  transform:translateX(-280px);
}
.menu li:nth-child(3):hover ~ li:last-child {
  -webkit-transform:translateX(-185px) !important;
  -moz-transform:translateX(-185px) !important;
  -ms-transform:translateX(-185px) !important;
  -o-transform:translateX(-185px) !important;
  transform:translateX(-185px) !important;
}
.menu li:nth-child(3).selected ~ li:last-child {
  -webkit-transform:translateX(-185px);
  -moz-transform:translateX(-185px);
  -ms-transform:translateX(-185px);
  -o-transform:translateX(-185px);
  transform:translateX(-185px);
}
.menu li:nth-child(4):hover ~ li:last-child {
  -webkit-transform:translateX(-90px) !important;
  -moz-transform:translateX(-90px) !important;
  -ms-transform:translateX(-90px) !important;
  -o-transform:translateX(-90px) !important;
  transform:translateX(-90px) !important;
}
.menu li:nth-child(4).selected ~ li:last-child {
  -webkit-transform:translateX(-90px);
  -moz-transform:translateX(-90px);
  -ms-transform:translateX(-90px);
  -o-transform:translateX(-90px);
  transform:translateX(-90px);
}
<!DOCTYPE html>
<html>
  <head>
     <meta charset="utf-8">
  </head>
  <body>
    <div class="menubox">
      <ul class="menu">
        <li class="selected">
          <a href="#">
            First
    </a>
  </li>
  <li>
    <a href="#">
   Second
    </a>
  </li>
  <li>
    <a href="#">
   Third
    </a>
  </li>
  <li>
    <a href="#">
   Forth
    </a>
  </li>
  <li></li>
   </ul>
    </div>
  </body>
</html>