目录

style outlineOffset 属性

示例

将轮廓边框移至边框边缘外 15 个像素:

document.getElementById("myDIV").style.outlineOffset = "15px";
亲自试一试 »

描述

outlineOffset 属性偏移轮廓,并将其绘制到边框边缘之外。

轮廓与边框有两个不同之处:

  • 轮廓不占用空间
  • 轮廓可以是非矩形的

浏览器支持

Property
outlineOffset Yes 15.0 Yes Yes Yes

语法

返回outlineOffset属性:

object.style.outlineOffset

设置outlineOffset属性:

object.style.outlineOffset = "length|initial|inherit"

属性值

Value Description
length The distance the outline is outset from the border edge. Default value is 0
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 0
返回值: 一个字符串,表示元素的outline-offset属性
CSS版本 CSS3

相关页面

CSS 参考:轮廓偏移属性