首頁  >  文章  >  web前端  >  css3 圆角(border-radius)_html/css_WEB-ITnose

css3 圆角(border-radius)_html/css_WEB-ITnose

WBOY
WBOY原創
2016-06-24 11:49:431011瀏覽

前缀


-moz(例如 -moz-border-radius)用于Firefox。
-webkit(例如:-webkit-border-radius)用于Safari和Chrome。

 

css3圆角代码

<div class="radius"></div>.radius {    padding:10px; width:300px; height:50px;    border: 5px solid #dedede;    -moz-border-radius: 15px;      /* Gecko browsers */    -webkit-border-radius: 15px;   /* Webkit browsers */    border-radius:15px;            /* W3C syntax */}

效果:

其他写法:

border-radius:5px 15px 20px 25px;               上  右    下   左
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn