css3 圆角(border-radius)_html/css_WEB-ITnose
程序员文章站
2022-05-22 10:26:35
...
前缀
-moz(例如 -moz-border-radius)用于Firefox。
-webkit(例如:-webkit-border-radius)用于Safari和Chrome。
css3圆角代码
.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; 上 右 下 左
上一篇: 一个php生成16位随机数的代码(两种方法)_php技巧
下一篇: php会嵌套么
推荐阅读
-
CSS3的Border-radius轻松制作圆角
-
CSS3 border-radius圆角的实现方法及用法详解
-
实现CSS3中的border-radius(边框圆角)示例代码
-
CSS3使用border-radius属性制作圆角
-
纯CSS3实现图片展示特效_html/css_WEB-ITnose
-
CSS3之圆角_html/css_WEB-ITnose
-
css3中的content和实体_html/css_WEB-ITnose
-
一款纯css3实现的响应式导航_html/css_WEB-ITnose
-
CSS3之弹性布局_html/css_WEB-ITnose
-
CSS3 实现六边形Div图片展示效果_html/css_WEB-ITnose