.radian{
width: 200px
height: 100px
border-radius: 200px/20px/*上下有弧度的边*/
/*border-radius: 20px/200px*//*左右有弧度的边*/
background-color: red
}
border-radius是一种缩写方法。如果“/”前后的值都存在,那么“/”前面的值设置其水平半径,“/”后面值设置其垂直半径。
HTML
<ul><li class="cur">全民设计师</li>
<li>全民设计师</li>
<li>全民设计师</li>
<li>全民设计师</li>
<li>全民设计师</li>
</ul>
CSS
ul {display: block
margin: 0
padding: 0
font-size: 0
}
li {
display: inline-block
position: relative
padding-top: 15px
width: 20%
font-size: 14px
text-align: center
}
li:before {
display: block
position: absolute
left: 0
right: 0
top: 5px
height: 2px
content: ""
background-color: #000
}
li:after {
display: block
position: absolute
left: 0
right: 0
top: 0
margin: 0 auto
border-radius: 100%
border: 1px solid #000
width: 10px
height: 10px
content: ""
background-color: #000
}
li:first-child:before {
left: 50%
}
li:last-child:before {
right: 50%
}
li.cur:after {
background-color: #fff
}
在线演示:
http://jsfiddle.net/geLrep8n/