- 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 - Clearfix
- 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 - 制表符大小
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - 最大块级尺寸
- CSS - 最小块级尺寸
- CSS - 混合模式
- CSS - 最大内联尺寸
- CSS - 最小内联尺寸
- CSS - 偏移量
- CSS - 强调色
- CSS - 用户选择
- 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 - 2D 变换
- CSS - 3D 变换
- 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 - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - border-end-end-radius 属性
CSS border-end-end-radius 属性定义了元素的块级结尾和内联结尾边之间角的圆角半径。此属性是逻辑边框半径,这意味着它的值取决于元素的书写模式、方向和文本方向。
语法
border-end-end-radius: 0 | length | percentage | initial | inherit;
属性值
值 | 描述 |
---|---|
0 | 没有圆角效果。默认值。 |
长度值 | 使用长度值定义块级结尾和内联结尾角的圆度。 |
百分比 | 使用百分比值定义块级结尾和内联结尾角的圆度。 |
initial | 将属性设置为其默认值。 |
inherit | 从父元素继承属性。 |
CSS border-end-end-radius 属性示例
以下示例说明了使用不同值的 border-end-end-radius 属性。
值为零的 border-end-end-radius
为了在块级和内联角的末尾不产生任何圆角效果,可以使用 0。在以下示例中,使用了 0 值。
示例
<!DOCTYPE html> <html> <head> <style> .rounded-box { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 0; } </style> </head> <body> <h2> CSS border-end-end-radius property </h2> <div class="rounded-box"> No rounded corner for block-end and inline-end corner. </div> </body> </html>
使用长度值的 border-end-end-radius
为了在块级和内联角的末尾产生圆角效果,可以使用长度值(例如 10px)来指定半径。在以下示例中,使用了 80px 值。
示例
<!DOCTYPE html> <html> <head> <style> .rounded-box1 { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 80px; } .rounded-box2 { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 80px 80px; } </style> </head> <body> <h2> CSS border-end-end-radius property </h2> <p class="rounded-box1"> Rounded corner for block-end and inline-end corner with single value. </p> <p class="rounded-box2"> Rounded corner for block-end and inline-end corner with two values. </p> </body> </html>
使用百分比值的 border-end-end-radius
为了在块级和内联角的末尾产生圆角效果,可以使用百分比值(例如 10%)来指定半径。在以下示例中,使用了 50% 值。
示例
<!DOCTYPE html> <html> <head> <style> .rounded-box1 { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 50%; } .rounded-box2 { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 50% 50%; } </style> </head> <body> <h2> CSS border-end-end-radius property </h2> <p class="rounded-box1"> Rounded corner for block-end and inline-end corner with single value. </p> <p class="rounded-box2"> Rounded corner for block-end and inline-end corner with two values. </p> </body> </html>
带有方向的 border-end-end-radius
在 border-end-end-radius 的上下文中,direction 参数决定要圆哪个角。在 LTR 方向上,右下角是圆的,而在 RTL 方向上,左下角是圆的。LTR 是默认方向。这些在以下示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> #right { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 120px 60px; direction: ltr; } #left { width: 150px; height: 150px; border: 3px solid green; border-end-end-radius: 120px 60px; direction: rtl; } </style> </head> <body> <h2> CSS border-end-end-radius property </h2> <p id="right"> block-end and inline-end rounded corner using direction: ltr </p> <p id="left"> block-end and inline-end rounded corner using direction: rtl </p> </body> </html>
带有书写模式的 border-end-end-radius
border-end-end-radius 属性可以与 writing-mode: vertical-lr 一起使用,它将文本垂直排列为从上到下,从左到右。类似地,使用 writing-mode: vertical-rl,它将文本垂直排列为从上到下,从右到左。这些在以下示例中显示。
示例
<html> <head> <style> .rounded-box { width: 150px; height: 150px; border: 3px solid green; margin: 10px; } .top-left-lr { border-end-end-radius: 30%; writing-mode: vertical-lr; } .top-left-rl { border-end-end-radius: 30%; writing-mode: vertical-rl; } </style> </head> <body> <h2> CSS border-end-end-radius property </h2> <div class="rounded-box top-left-lr"> block-end and inline-end rounded corner using vertical-lr. </div> <div class="rounded-box top-left-rl"> block-end and inline-end rounded corner using vertical-rl. </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
border-end-end-radius | 89.0 | 89.0 | 66.0 | 15.0 | 75.0 |
css_properties_reference.htm
广告