目录

style borderTopLeftRadius 属性

示例

将圆角边框添加到 div 元素的左上角:

document.getElementById("myDIV").style.borderTopLeftRadius = "25px";
亲自试一试 »

描述

borderTopLeftRadius 属性设置或返回左上角边框的形状。

提示:此属性允许您为元素添加圆角边框!


浏览器支持

Property
borderTopLeftRadius Yes 9.0 Yes Yes Yes

语法

返回 borderTopLeftRadius 属性:

object.style.borderTopLeftRadius

设置 borderTopLeftRadius 属性:

object.style.borderTopLeftRadius = "length| % [ length| %]|initial|inherit"

笔记:border-top-left-radius 属性的两个长度或百分比值定义四分之一椭圆的半径,该四分之一椭圆定义外边框边缘的角的形状。第一个值是水平半径,第二个值是垂直半径。如果省略第二个值,它将从第一个值复制。如果任一长度为零,则角为方形,而不是圆形。水平半径的百分比是指边框框的宽度,而垂直半径的百分比是指边框框的高度。

属性值

Value Description
length Defines the shape of the top-left corner
% Defines the shape of the top-left corner in %
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 0
返回值: 一个字符串,表示元素的 border-top-left-radius 属性
CSS版本 CSS3

相关页面

CSS 参考:border-top-left-radius 属性