我正在为我的站点制作一个导航栏,并且希望弯曲左上角,左下角,右上角和右下角。我知道如何使用边界半径,但是如果在导航栏上使用它,则每个链接上都有一个弯曲的角。我将如何在起点和终点处设置弯角? Slightly like these.

这是我的HTML

<body>

<div id="Wrapper">
    <div id="Header">
        <ul>
            <li><a href=""><img src="Text-Align.png">Home</a></li>
            <li><a href=""><img src="Text-Align.png">Bins</a></li>
            <li><a href=""><img src="Text-Align.png">Kidzone</a></li>
            <li><a href=""><img src="Text-Align.png">Why?</a></li>
            <li><a href=""><img src="Text-Align.png">How?</a></li>
        </ul>
    </div>
</div>

</body>


这是我的CSS

html{
    background-color:#E4E4E4;
}

body,html{
    margin-top: 0px;
    height:100%;
}

#Wrapper{
    display:block;
    background-color: white;
    border-left-style:solid;
    border-left-color:#B8B8B8;
    border-left-width:1px;
    border-right-style:solid;
    border-right-color:#B8B8B8;
    border-right-width:1px;
    width: 800px;
    height: 100%;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

#Header{
    width:800px;
    margin-left:35px;
}

#Header ul{
    list-style: none;
    display: inline;
}

#Header li{
    border-left-style:solid;
    border-left-width:1px;
    border-left-color:white;
    display:block;
    width:145px;
    text-align:center;
    float: left;
}


a:link,a:visited{
    display:block;
    height:30px;
    background-image:url("navbar.gif");
    background-repeat:repeat-x;
    font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    text-decoration:none;
    font-size:18px;
    color:white;
}

a:hover,a:active{
    background-image:url("navbarhover.gif");
    background-repeat:repeat-x;
}


提前致谢

最佳答案

如果可以使用CSS3,则可以使用firstlast伪选择器。

#Header ul li:first-child {

}

#Header ul li:last-child {

}

关于html - 如何只在导航栏的开始和结束处添加边框半径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16903520/

10-16 14:29
查看更多