作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我的导航栏列表上有一个右边框,看起来像 this
不过我希望它看起来像this这可能不使用图像吗?
谢谢。
导航栏 CSS
.navbar .navbar-inner {
padding: 0;
}
.navbar .nav {
margin: 0;
display: table;
width: 100%;
}
.navbar .nav li {
display: table-cell;
width: 11.1%;
float: none;
text-align: center;
left: 4px;
font-weight: bold;
height: 15px;
}
.navbar .nav li a {
border-right: 1px solid black;
height: 10px;
line-height: 10px;
}
#active-link {
text-decoration: underline;
}
.navbar .nav li:first-child a {
border-left: 0;
border-radius: 3px 0 0 3px;
}
.navbar .nav li:last-child a {
border-right: 0;
border-radius: 0 3px 3px 0;
}
最佳答案
尝试将 border-right 设置为 <a>
元素而不是 <li>
元素。
编辑 1
因为你的 border-right 附加到你的 a 元素试试这个:
.nav li { 高度:15px; }.nav li a { height: 10px; }
您现在可能会看到边框小于菜单按钮本身。只需稍微调整一下高度,看看您想要什么。
编辑2
同时添加:
.nav li a { line-height: 15px; }
行高必须与列表项的高度相同。
关于css - 可以用 css 做到这一点吗?显示的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36022970/
我是一名优秀的程序员,十分优秀!