目录

style borderTopColor 属性

示例

将 <div> 元素的上边框颜色更改为红色:

document.getElementById("myDiv").style.borderTopColor = "red";
亲自试一试 »

描述

borderTopColor 属性设置或返回元素上边框的颜色。


浏览器支持

Property
borderTopColor Yes Yes Yes Yes Yes

语法

返回 borderTopColor 属性:

object.style.borderTopColor

设置 borderTopColor 属性:

object.style.borderTopColor = "color|transparent|initial|inherit"

属性值

Value Description
color Specifies the color of the top border. Look at CSS Color Values for a complete list of possible color values. Default color is the current color of the element
transparent The color of the top border is transparent (underlying content will shine through)
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> 元素的顶部边框颜色:

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

相关页面

CSS教程:CSS 边框

CSS 参考:边框顶部颜色属性

HTML DOM 参考:边境属性