我在 html 和 css 中修改了导航栏。在栏中有指向其他页面的链接,我希望当我用鼠标浏览它们时,导航栏中专用于链接的 div 会用中等红色边框改变颜色,问题是当我浏览链接时有边框导航栏变宽了。
#access {
background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#252525, #0a0a0a);
background: -o-linear-gradient(#252525, #0a0a0a);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */
background: -webkit-linear-gradient(#252525, #0a0a0a);
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
clear: both;
display: block;
margin: 0 auto 6px;
width: 100%;
text-align: center;
line-height: 0;
}
#access ul {
font-size: 13.5px;
list-style: none;
margin: 0 0 0 -0.8125em;
padding-left: 0;
display:inline-block;
}
#access li:hover > a,
#access ul ul :hover > a,
#access a:focus {
background: #efefef;
border-bottom-style:solid;
border-width:5px;
border-color:red;
}