border-top-left-radius

**border-top-left-radius** CSS 属性通过指定定义角部曲率的椭圆的半径(或长半轴和短半轴的半径)来圆化元素的左上角。

试一试

圆化可以是圆形或椭圆形,如果其中一个值为 0,则不进行圆化,角部为方形。

border-radius.png

背景,无论是图像还是颜色,都将在边框处被裁剪,即使是圆角边框;裁剪的确切位置由 background-clip 属性的值定义。

**注意:**如果此属性的值未在应用于元素之后的 border-radius 简写属性中设置,则此属性的值将由 简写属性 重置为其初始值。

语法

css
/* the corner is a circle */
/* border-top-left-radius: radius */
border-top-left-radius: 3px;

/* the corner is an ellipse */
/* border-top-left-radius: horizontal vertical */
border-top-left-radius: 0.5em 1em;

border-top-left-radius: inherit;

/* Global values */
border-top-left-radius: inherit;
border-top-left-radius: initial;
border-top-left-radius: revert;
border-top-left-radius: revert-layer;
border-top-left-radius: unset;

使用一个值

使用两个值

  • 第一个值是 <length><percentage>,表示该角部边框要使用的椭圆的水平长半轴。
  • 第二个值是 <length><percentage>,表示该角部边框要使用的椭圆的垂直长半轴。

<length-percentage>

表示圆形半径或椭圆的长半轴和短半轴的大小。作为绝对长度,它可以用 CSS <length> 数据类型允许的任何单位表示。水平轴的百分比指的是盒子的宽度,垂直轴的百分比指的是盒子的高度。负值无效。

正式定义

初始值0
应用于所有元素;但当 border-collapsecollapse 时,用户代理不需要应用于 tableinline-table 元素。目前,内部表格元素的行为未定义。它也应用于 ::first-letter
继承
百分比指的是边框盒的相应尺寸
计算值两个绝对 <length><percentage>
动画类型长度百分比 或 calc();

正式语法

border-top-left-radius = 
<length-percentage [0,∞]>{1,2}

<length-percentage> =
<length> |
<percentage>

示例

圆弧

单个 <length> 值生成圆弧。

css
div {
  border-top-left-radius: 40px;
  background-color: lightgreen;
  border: solid 1px black;
  width: 100px;
  height: 100px;
}

椭圆弧

两个不同的 <length> 值生成椭圆弧。

css
div {
  border-top-left-radius: 40px 20px;
  background-color: lightgreen;
  border: solid 1px black;
  width: 100px;
  height: 100px;
}

带百分比半径的方形元素

带单个 <percentage> 值的方形元素生成圆弧。

css
div {
  border-top-left-radius: 40%;
  background-color: lightgreen;
  border: solid 1px black;
  width: 100px;
  height: 100px;
}

带百分比半径的非方形元素

对于非正方形元素,使用单个<percentage>值会产生椭圆弧。

css
div {
  border-top-left-radius: 40%;
  background-color: lightgreen;
  border: solid 1px black;
  width: 200px;
  height: 100px;
}

规范

规范
CSS 背景和边框模块 Level 3
# the-border-radius

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅