菜单导航栏

时间:2013-05-12 16:16:49

标签: html css web menu navigation

是否有任何方法可以让单词下方的条形自动调整到它所在单词的宽度,而我必须上传特定大小的条形图以供我制作的菜单项?感谢

enter image description here

3 个答案:

答案 0 :(得分:1)

你应该使用border:

.menu a { 
   /* additional styling... */
   border-bottom: 1px solid #FFF; 
}

答案 1 :(得分:1)

看起来它可能只是链接的边框底部。这是一个JSFiddle

<a href="#">Portfolio</a>
<a href="#">Blog</a>

#footer a {
    border-bottom: 1px solid white;
}

答案 2 :(得分:0)

您还可以使用位于每个菜单项底部的背景图像。

.menu a{
background:url(path/to/image.jpg) repeat-x bottom;
}