目录

style outlineWidth 属性

示例

更改 <div> 元素轮廓的宽度:

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

描述

profileWidth 属性设置或返回元素周围轮廓的宽度。

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

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


浏览器支持

Property
outlineWidth Yes Yes Yes Yes Yes

语法

返回轮廓宽度属性:

object.style.outlineWidth

设置轮廓宽度属性:

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

属性值

Value Description
thin Defines a thin outline
medium Defines a medium outline. This is default
thick Defines a thick outline
length The width of the outline 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


技术细节

默认值: 中等的
返回值: 一个字符串,表示元素轮廓的宽度
CSS版本 CSS2

更多示例

示例

使用 "thick" 值更改 <div> 元素的轮廓宽度:

document.getElementById("myDiv").style.outlineWidth = "thick";
亲自试一试 »

示例

返回 <div> 元素轮廓的宽度:

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

相关页面

CSS教程:CSS 外轮廓

CSS 参考:外轮廓属性

HTML DOM 参考:外轮廓属性