- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 位移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 叠加层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - 全部
- CSS - 内嵌
- CSS - 隔离
- CSS - 溢出滚动
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - 偏移量
- CSS - Accent Color
- CSS - User Select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文字效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 二维变换
- CSS - 三维变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特效性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - border-radius 属性
CSS border-radius 属性用于使元素外边框的角变圆。它是 border-top-left-radius、border-top-right-radius、border-bottom-right-radius 和 border-bottom-left-radius 属性的简写属性。根据提供给该属性的值的数量(一个到四个),不同的部分将被圆角化。
语法
border-radius: length | percentage | initial | inherit;
属性值
值 | 描述 |
---|---|
长度 | 它使用长度单位指定角的圆度 (例如 10px 20px)。默认值为 0。 |
百分比 | 它使用百分比指定角的圆度 (例如 10% 20%)。 |
initial | 它将属性设置为其默认值。 |
inherit | 它从父元素继承属性。 |
CSS 边框半径属性示例
以下示例使用不同的值解释了 border-radius 属性。
使用长度值的边框半径属性
要定义元素外边框角的圆度,我们可以使用长度值指定半径(例如 10px 20px 30px 2px、25px 40px 等)。该属性取决于传递的值的数量。以下示例通过采用不同数量的值来演示这一点。
示例
<!DOCTYPE html> <html> <style> .container { box-shadow: 10px 10px 10px grey; display: grid; justify-items: center; align-items: center; padding: 20px; margin-bottom: 20px; } .box { height: 50px; width: 50px; padding: 10%; border: 1px solid grey; background-color: lightgreen; } #one { border-radius: 20px; } #two { border-radius: 15px 50px; } #three { border-radius: 15px 45px 90px; } #four { border-radius: 15px 45px 75px 10px; } </style> <head> </head> <body> <h2> CSS border-radius property </h2> <div class="container"> <p> This box uses a single value 20px for the border-radius property. So all the four corners top-left, top-right, bottom-right and bottom-left have the same radius corners as shown here.</p> <p id="one" class="box"> 20px </p> </div> <div class="container"> <p> This box uses two values 15px 50px for the border-radius property. top-left and bottom-rigth corners have 15px radius while top-right and bottom-left have 50px radii corners as shown here. </p> <p id="two" class="box"> 15px 50px </p> </div> <div class="container"> <p> This box uses three values 15px 45px 90px for the border-radius property. top-left has 15px radius, top-right and bottom-left have 45px radius and bottom-right has 90px radius as shown here. </p> <p id="three" class="box"> 15px 45px 90px </p> </div> <div class="container"> <p> This box uses four values 15px 45px 75px 10px for the border-radius property. top-left has 15px radius, top-right has 45px, bottom-right has 75px and bottom-left has 10px radii corners as shown here. </p> <p id="four" class="box"> 15px 45px 75px 10px </p> </div> </body> </html>
使用百分比值的边框半径属性
要定义元素外边框角的圆度,我们可以使用百分比值指定半径(例如 10% 20% 30% 2%、25% 40% 等)。该属性取决于传递的值的数量。以下示例通过采用不同数量的值来演示这一点。
示例
<!DOCTYPE html> <html> <style> .container { box-shadow: 10px 10px 10px grey; display: grid; justify-items: center; align-items: center; padding: 20px; margin-bottom: 20px; } .box { height: 50px; width: 50px; padding: 10%; border: 1px solid grey; background-color: lightblue; } #one { border-radius: 20%; } #two { border-radius: 15% 50%; } #three { border-radius: 15% 45% 90%; } #four { border-radius: 15% 45% 75% 10%; } </style> <head> </head> <body> <h2> CSS border-radius property </h2> <div class="container"> <p> This box uses a single value 20% for the border-radius property. So all the four corners top-left, top-right, bottom-right and bottom-left have the same radius corners as shown here. </p> <p id="one" class="box"> 20% </p> </div> <div class="container"> <p> This box uses two values 15% 50% for the border-radius property. top-left ad bottom-rigth corners have 15% radius while top-right and bottom-left have 50% radii corners as shown here. </p> <p id="two" class="box"> 15% 50% </p> </div> <div class="container"> <p> This box uses three values 15% 45% 90% for the border-radius property. top-left has 15% radius, top-right and bottom-left have 45% radius and bottom-right has 90% radius as shown here. </p> <p id="three" class="box"> 15% 45% 90% </p> </div> <div class="container"> <p> This box uses four values 15% 45% 75% 10% for the border-radius property. top-left has 15% radius, top-right has 45%, bottom-right has 75% and bottom-left has 10% radii corners as shown here. </p> <p id="four" class="box"> 15% 45% 75% 10% </p> </div> </body> </html>
使用混合值的边框半径属性
要定义元素外边框角的圆度,我们可以使用长度值和百分比值的组合指定半径(例如 10px 20%、15px 40% 等)。以下示例演示了这一点。
示例
<!DOCTYPE html> <html> <style> .container { display: grid; justify-items: center; align-items: center; padding: 20px; margin-bottom: 20px; } .box { height: 50px; width: 50px; padding: 10%; border: 1px solid grey; background-color: lightpink; } #one { border-radius: 15px 40%; } </style> <head> </head> <body> <h2> CSS border-radius property </h2> <div class="container"> <p> This box uses a combination of length and percentage values. top-left and bottom-right corners are given 15px radii while top-right and bottom-left are given with 40% radii as shown here. </p> <p id="one" class="box"> 15px 40% </p> </div> </body> </html>
注意:border-radius 属性最多接受四个值,因此根据给定值的数量,角将相应地被圆角化。
- 一个值:如果给出一个值,它将应用于左上角、右上角、右下角和左下角。
- 两个值:如果给出两个值,第一个值将应用于左上角和右下角,第二个值将应用于右上角和左下角。
- 三个值:如果给出三个值,第一个值将应用于左上角,第二个值应用于右上角和左下角,最后一个值将应用于右下角。
- 四个值:如果给出四个值,第一个值将应用于左上角,第二个值应用于右上角,第三个值应用于右下角,第四个值应用于左下角。
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
border-radius | 5.0 | 9.0 | 4.0 | 5.0 | 10.5 |
css_properties_reference.htm
广告