>  기사  >  웹 프론트엔드  >  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으로 문의하세요.