css3怎么创建圆角(CSS3中border-radius属性设定圆角的使用技巧)
类别:Web前端 浏览量:1119
时间:2022-01-22 01:12:07 css3怎么创建圆角
CSS3中border-radius属性设定圆角的使用技巧border-radius CSS3中的代表——第一个在社区中得到广泛使用新属性。这意味着,除去Internet Explorer 8及更低版本,所有的浏览器可以显示圆角。
为了使样式能正确应用,需要为Webkit和Mozilla内核添加前缀。
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
然而,今天我们不关心前缀,只简单坚持官方形式:border-radius。
如你所料,我们可以为每个角指定不同的值。
- border-top-left-radius: 20px;
- border-top-rightright-radius: 0;
- border-bottom-rightright-radius: 30px;
- border-bottom-left-radius: 0;
在上面的代码中,设置border-top-right-radius和border-bottom-left-radius为零是多余的,除非该元素有继承的值。
按top-left, top-right, bottom-right, bottom-left顺序设置每个 radius 的值。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left 相同。
我们可以实验,
- border-radius:2px;
等价于:
- border-top-left-radius:2px;
- border-top-rightright-radius:2px;
- border-bottom-rightright-radius:2px;
- border-bottom-left-radius:2px;
例子2:
- border-radius:2em 1em 4em / 0.5em 3em;
等价于:
- border-top-left-radius:2em 0.5;
- border-top-rightright-radius:1em 3em;
- border-bottom-rightright-radius:4em 0.5em;
- border-bottom-left-radius:1em 3em;
就像margin和padding一样,如果需要的话,这些设置可以合并为一个单一的属性。
- /* 左上角, 右上角, 右下角, 左下角 */
- border-radius: 20px 0 30px 0;
举个例子(网页设计师经常这样做),可以用CSS的border-radius属性模拟柠檬的形状,如下:
- .lemon {
- width: 200px; height: 200px;
- background: #F5F240;
- border: 1px solid #F0D900;
- border-radius: 10px 150px 30px 150px;
- }
热门推荐
- php设计模式学习(PHP设计模式之PHP迭代器模式讲解)
- php数据判断函数有哪些(PHP判断函数是否被定义的方法)
- django框架全面讲解(Django uwsgi Nginx 的生产环境部署详解)
- dedecms自定义字段(详解怎么样让DEDECMS的list标签支持weight排序的方法)
- css图片3D效果(用CSS实现图片的3D凹凸感凸出镜框外或凹陷镜框里)
- SQL Server中SQL语句或者存储过程的最大长度
- elementuivue使用技巧(Vue Element前端应用开发之常规Element界面组件)
- 挂游戏用云服务器好不好?(挂游戏用云服务器好不好?)
- vue用于动态切换组件的内置组件(Vue 可拖拽组件Vue Smooth DnD的使用详解)
- nginx怎么实现反向代理(nginx反向代理时如何保持长连接)