好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

css3border-radius_html/css_WEB-ITnose

前缀对应浏览器

前缀

浏览器

-webkit

chrome和safari

-moz

firefox

-ms

IE

-o

opera

border-radius:

 div.circle{    height:100px;/*与width设置一致*/    width:100px;    background:#9da;    border-radius:50px;/*四个圆角值都设置为宽度或高度值的一半*/    }div.same{    height:100px;    width:50px;    background:#9da;}.semi-circle{     border-radius:50px 0 0 50px;    }.test{    border-radius: 50% 0 0 50%;}     

查看更多关于css3border-radius_html/css_WEB-ITnose的详细内容...

  阅读:45次