gpt4 book ai didi

html - 带底线的导航菜单

转载 作者:行者123 更新时间:2023-11-28 10:13:42 24 4
gpt4 key购买 nike

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

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

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

最佳答案

http://jsfiddle.net/bkcG3/

这里使用带边框的外部div

我把你的 li 变成了 display:inline-block

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

编辑-

带有 css 重置 block 的新 fiddle 可以处理您使用过的额外空间从一些不同的浏览器来看,并相应地修复样式。

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

一定要看

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

关于html - 带底线的导航菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24295340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com