📅  最后修改于: 2023-12-03 15:30:07.994000             🧑  作者: Mango
border-bottom-left-radius
属性用于设置元素左下角边框的圆角半径大小。
/* 取值为长度值或百分比 */
border-bottom-left-radius: length|percentage;
/* 可以设置四个值,分别为左上、右上、右下、左下的半径大小 */
border-radius: length|percentage length|percentage length|percentage length|percentage;
length
:指定长度值,比如 10px
。percentage
:指定百分比,相对于容器的宽度或高度。inherit
:继承父元素的值。设置元素左下角 20px 的圆角
border-bottom-left-radius: 20px;
设置四个角的圆角大小,记为 top-left、top-right、bottom-right 和 bottom-left,注意顺序是按照顺时针方向排列的:
border-radius: 10px 20px 30px 40px;
长度值可以为 0,表示对应的角不产生圆角效果:
border-radius: 0 20px 0 40px;
border-radius
属性简写来一次性设置四个角的圆角大小;0
半径设置单位,可以简写为 0
,不需要写单位;