目录

style outlineColor 属性

示例

更改 <div> 元素轮廓的颜色:

document.getElementById("myDiv").style.outlineColor = "#00ff00";
亲自试一试 »

描述

profileColor 属性设置或返回元素周围轮廓的颜色。

轮廓是元素周围的一条线。它显示在元素的边缘周围。但是,它与边界属性不同。

轮廓不是元素尺寸的一部分,因此元素的宽度和高度属性不包含轮廓的宽度。


浏览器支持

Property
outlineColor Yes Yes Yes Yes Yes

语法

返回轮廓颜色属性:

object.style.outlineColor

设置轮廓颜色属性:

object.style.outlineColor = "color|invert|initial|inherit"

属性值

Value Description
color Specifies the color of the outline. Look at CSS Color Values for a complete list of possible color values
invert Inverts the color of the outline to the opposite value. Note: Browsers are not required to support this value
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 倒置
返回值: 一个字符串,表示元素轮廓的颜色
CSS版本 CSS2

更多示例

示例

返回 <div> 元素的边框颜色:

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

相关页面

CSS教程:CSS 外轮廓

CSS 参考:轮廓颜色属性

HTML DOM 参考:外轮廓属性