带底线的导航菜单

时间:2014-06-18 21:32:28

标签: html css css3

我正在处理导航菜单,我想设计一个如下所示的菜单。

the menu that i need is give

我的HTML代码是

<div id='cssmenu'>
<ul>
    <li class='active'><a href='index.html'><span>WOMEN</span></a></li>
    <li><a href='#'><span>MEN</span></a></li>
    <li><a href='#'><span>JUNIOR</span></a></li>
    <li ><a href='#'><span>ACCESSORIES</span></a></li>
    <li><a href='#'><span>COLLECTION</span></a></li>
    <li><a href='#'><span>SALE</span></a></li>
    <li class="last"><a href='#'><span>MY ACCOUNT</span></a></li>


</ul>
</div>

我的css已经给出了

@import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
#cssmenu {
  background: #fff;
  width: 100%;
}
#cssmenu ul {
  /*content: ' ';
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;*/

}
#cssmenu ul li {
  float: left;
  display: block;
  padding: 0;

}
#cssmenu ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 15px 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;

  border-bottom:10px solid #000 ;
}
.last {
float:right;
padding-left:60px;
font-style:italic;}


#cssmenu ul li a:hover {
  color: #000;
  border-color:#5ae1e4;
}
#cssmenu ul li a:hover:before {
  /*width: 50%;*/
  border-color:#FFF;
}
#cssmenu ul li a:after {
  /*content: '';
  display: block;
  position: absolute;
  right: -3px;
  top: 19px;
  height: 6px;
  width: 6px;
  background: #ffffff;
  opacity: .5;*/
}
#cssmenu ul li a:before {
 /* content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #333333;
  -webkit-transition: width .25s;
  -moz-transition: width .25s;
  -ms-transition: width .25s;
  -o-transition: width .25s;
  transition: width .25s;*/
}
#cssmenu ul li.last > a:after,
#cssmenu ul li:last-child > a:after {
  display: none;
}
#cssmenu ul li.active a {
  color: #333333;
}
#cssmenu ul li.active a:before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #cssmenu ul li {
    float: none;
  }
  #cssmenu ul li a {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #cssmenu ul li a:after {
    display: none;
  }
  #cssmenu ul li a:before {
    height: 1px;
    background: #ffffff;
    width: 100%;
    opacity: .2;
  }
  #cssmenu ul li.last > a:before,
  #cssmenu ul li:last-child > a:before {
    display: none;
  }
}

现在我的输出是

The output resul

现在我希望黑色像直到恩..我的意思是黑色的100%。 如果我有能力控制线路,我将感激不尽 注意:对我来说,只允许使用css和html 提前谢谢你

1 个答案:

答案 0 :(得分:0)

http://jsfiddle.net/bkcG3/

这里使用带边框的外部div

我让你的li进入显示:inline-block

#cssmenu {
  background: #fff;
  width: 100%;
 border-bottom: 10px black solid;
height: 49px;
}

编辑 -

使用css重置块的新小提琴来照顾你曾经的额外空间 从一些不同的浏览器中看到,并相应地修改了样式。

http://jsfiddle.net/bkcG3/1/

请务必阅读

http://html5doctor.com/html-5-reset-stylesheet/