目录

style borderTopRightRadius 属性

示例

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

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

描述

borderTopRightRadius 属性定义右上角边框的形状。

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


浏览器支持

Property
borderTopRightRadius Yes 9.0 Yes Yes Yes

语法

返回 borderTopRightRadius 属性:

object.style.borderTopRightRadius

设置 borderTopRightRadius 属性:

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

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

属性值

Value Description
length Defines the shape of the top-right corner
% Defines the shape of the top-right 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-right-radius 属性
CSS版本 CSS3

相关页面

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