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";
亲自试一试 »
CSS教程:CSS 外轮廓
CSS 参考:外轮廓属性
HTML DOM 参考:外轮廓属性
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!