📜  CSS | border-end-end-radius 属性(1)

📅  最后修改于: 2023-12-03 15:14:19.383000             🧑  作者: Mango

CSS | border-end-end-radius 属性

border-end-end-radius 属性用于设置边框右下角的圆角半径大小。

语法
border-end-end-radius: value;

其中,value 可以为以下之一:

  • length:用于指定边框圆角的长度大小,比如 10px
  • percentage:用于指定边框圆角的相对长度,比如 50%
  • inherit:继承父元素的 border-end-end-radius 属性值。
示例
/* 设置右下角边框圆角 */
border-end-end-radius: 10px;
/* 设置右下角边框相对大小 */
border-end-end-radius: 50%;
备注
  • border-end-end-radius 属性只能用于设置右下角的圆角,不能用于设置左下角、右上角和左上角的圆角。如果需要设置其他边角的圆角半径大小,可以使用 border-top-left-radiusborder-top-right-radiusborder-bottom-left-radiusborder-bottom-right-radius 属性。
  • border-end-end-radius 属性会继承父元素的 border-end-end-radius 属性值,如果父元素没有设置该属性,则采用默认值 0

以上是有关 CSS | border-end-end-radius 属性的介绍,希望对大家有所帮助。