rob*_*bby 6 html css html5 css3
我有问题让Chrome在我从头开始构建的下拉式导航中显示我的圆角.圆角在Firefox中显示得很好,但Chrome和IE9似乎不想渲染我的角落.我已经将我的圆角调用更改为<li>我的下拉列表中的最后一个元素,以及<a>我显示为具有宽度和高度属性的块的最后一个元素,但似乎没有什么可行的!
所以我想我会在这里发帖,看看是否有人可以给我一个正确方向的推动.
该网站仍处于早期开发阶段,因此不必担心冗余的锚链接.
我的HTML:
<nav>
<ul id="mainNav">
<li>
<a href="highlevel.html" class="autos"></a>
<ul>
<li><a href="subcategory.html">News</a></li>
<li><a href="subcategory.html">Reviews</a></li>
<li><a href="subcategory.html">Car Tech</a></li>
<li><a href="subcategory.html">Fuel Economy & Safety</a></li>
<li><a href="subcategory.html">Buying & Selling</a></li>
<li><a href="subcategory.html">Everything Else</a></li>
</ul>
</li>
<li>
<a href="highlevel.html" class="lifestyles"></a>
<ul>
<li><a href="subcategory.html">Music</a></li>
<li><a href="subcategory.html">Food</a></li>
<li><a href="subcategory.html">Travel</a></li>
<li><a href="subcategory.html">Shopping</a></li>
<li><a href="subcategory.html">Everything Else</a></li>
</ul>
</li>
<li>
<a href="highlevel.html" class="people"></a>
<ul>
<li><a href="subcategory.html">Who You Know</a></li>
<li><a href="subcategory.html">Who You Should Know</a></li>
<li><a href="subcategory.html">Everyone Else</a></li>
</ul>
</li>
<li>
<a href="highlevel.html" class="tech"></a>
<ul>
<li><a href="subcategory.html">Business</a></li>
<li><a href="subcategory.html">Pleasure</a></li>
<li><a href="subcategory.html">Everything Else</a></li>
</ul>
</li>
<li>
<a href="highlevel.html" class="trends"></a>
<ul>
<li><a href="subcategory.html">Online</a></li>
<li><a href="subcategory.html">Offline</a></li>
<li><a href="subcategory.html">Everything Else</a></li>
</ul>
</li>
</ul>
</nav><!-- /Main Nav -->
Run Code Online (Sandbox Code Playgroud)
我的CSS:
nav {
display:block;
position:relative;
width:980px;
height:41px;
background:url(../../images/nav_bg.png) center top no-repeat;
margin:0 auto;
border-bottom:2px solid #777;
z-index:9998;
}
#mainNav {
display:block;
position:relative;
background:#fff;
}
#mainNav li {
float:left;
}
#mainNav li a {
display:block;
position:relative;
width:125px;
height:41px;
overflow:hidden;
}
#mainNav li a.autos {
display:block;
position:relative;
width:125px;
height:41px;
background:url(../../images/nav1.png) center top no-repeat;
}
#mainNav li a.autos:hover {
background:url(../../images/nav1.png) center -41px no-repeat;
}
#mainNav li a.lifestyles {
display:block;
position:relative;
width:125px;
height:41px;
background:url(../../images/nav2.jpg) center top no-repeat;
}
#mainNav li a.lifestyles:hover {
background:url(../../images/nav2.jpg) center -41px no-repeat;
}
#mainNav li a.people {
display:block;
position:relative;
width:125px;
height:41px;
background:url(../../images/nav3.jpg) center top no-repeat;
}
#mainNav li a.people:hover {
background:url(../../images/nav3.jpg) center -41px no-repeat;
}
#mainNav li a.tech {
display:block;
position:relative;
width:125px;
height:41px;
background:url(../../images/nav4.jpg) center top no-repeat;
}
#mainNav li a.tech:hover {
background:url(../../images/nav4.jpg) center -41px no-repeat;
}
#mainNav li a.trends {
display:block;
position:relative;
width:125px;
height:41px;
background:url(../../images/nav5.jpg) center top no-repeat;
}
#mainNav li a.trends:hover {
background:url(../../images/nav5.jpg) center -41px no-repeat;
}
/* === Dropdown Menu Styles === */
#mainNav ul {
display:none;
position:absolute;
z-index:9998;
}
#mainNav li:hover ul {
display:block;
position:absolute;
width:160px;
height:auto;
border-right:1px solid #999;
border-left:1px solid #999;
overflow:hidden;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 7px;
-moz-border-radius-bottomleft: 7px;
-webkit-border-radius: 0px 0px 7px 7px;
border-radius: 0px 0px 7px 7px;
-webkit-box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, .25);
-moz-box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, .25);
box-shadow: 0px 5px 3px 0px rgba(0, 0, 0, .25);
}
#mainNav li:hover ul li a {
display:block;
width:160px;
height:auto;
background:#fff;
padding:5px 0;
border-bottom:1px solid #999;
font-family: 'Swiss721Light', Verdana, Arial;
text-indent:10px;
text-decoration:none;
font-size:14px;
line-height:16px;
color:#555;
}
#mainNav li:hover ul li a:hover {
background:#eaeaea;
}
Run Code Online (Sandbox Code Playgroud)
你可以这样做:
#mainNav li:hover ul li:last-child a{
border-radius: 0px 0px 7px 7px;
}
Run Code Online (Sandbox Code Playgroud)
你还需要摆脱包含ul的40px填充左边
添加填充到底部是好的,但使它看起来有点乱,特别是如果您使用单个链接周围的边框