目录

style borderTopWidth 属性

示例

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

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

描述

borderTopWidth 属性设置或返回元素上边框的宽度。


浏览器支持

Property
borderTopWidth Yes Yes Yes Yes Yes

语法

返回 borderTopWidth 属性:

object.style.borderTopWidth

设置 borderTopWidth 属性:

object.style.borderTopWidth = "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
inherit The width of the top border is inherited from the parent element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

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

更多示例

示例

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

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

示例

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

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

相关页面

CSS教程:CSS 边框

CSS 参考:边框顶部宽度属性

HTML DOM 参考:边境属性