边框不是html中的四舍五入

时间:2013-07-19 19:49:11

标签: html css3

不是让其他人调试你的代码,但我需要一些帮助来解决这个问题。

<!DOCTYPE html>
<head>
</head>
<body id="menubody">
<ul class="menubar">
<li><a>CONTACTUS</a></li>
<li><a>ABOUTUS</a></li>
<li><a>HOME</a></li>
<li><a>LINKS</a></li>
</ul>
</body>
</html>

CSS:

* {
    margin:0px;
    padding:0px;
}
#menubody {
    font-size:120%;
    background-color:#D4F1FA;
    padding:50px;
}
.menubar {
    font-family:verdana;
    font-weight:bold;
    list-style-type:none;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
    border-radius:15px;
}
.menubar li {
    background-color:#A88314;
    width:159px;
    text-align:center;
    position:relative;
    float:left;
}
.menubar a {
    color:#144213;
    text-decoration:none;
    display:block;
    width:159px;
    height:40px;
    line-height:40px;
    background-color:#70FA6B
}
.menubar li:hover>a {
    background-color:#A88314;
    color:#DAECF2
}

边框不圆润。有什么建议? :)

1 个答案:

答案 0 :(得分:1)

很简单,您的锚点没有任何边框半径,因此与UL边界重叠...将类应用于第一个子项,左边角(顶部和底部)的边界半径和右边的相同的最后一个子项

这样的事情:

.menubar > li:first-child a {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.menubar > li:last-child a {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

有任何问题,请告诉我