目录

style borderRightWidth 属性

示例

将 <div> 元素右边框的宽度更改为 10px:

document.getElementById("myDiv").style.borderRightWidth = "10px";
亲自试一试 »

描述

borderRightWidth 属性设置或返回元素右边框的宽度。


浏览器支持

Property
borderRightWidth Yes Yes Yes Yes Yes

语法

返回 borderRightWidth 属性:

object.style.borderRightWidth

设置 borderRightWidth 属性:

object.style.borderRightWidth = "thin|medium|thick| length|initial|inherit"

属性值

Value Description
thin Defines a thin border
medium Defines a medium border. This is default
thick Defines a thick border
length The width of the border in length units
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 中等的
返回值: 一个 String,表示元素右边框的宽度
CSS版本 CSS1

更多示例

示例

将 <div> 元素右边框的宽度更改为细:

document.getElementById("myDiv").style.borderRightWidth = "thin";
亲自试一试 »

示例

返回 <div> 元素右边框的宽度:

alert(document.getElementById("myDiv").style.borderRightWidth);
亲自试一试 »

相关页面

CSS教程:CSS 边框

CSS 参考:右边框宽度属性

HTML DOM 参考:边境属性