Style outlineOffset 属性

Style 对象参考手册 Style 对象

规定边框边缘之外 15 像素处的轮廓:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    #myDIV {
      margin: auto;
      border: 1px solid black;
      outline: coral solid 5px;
      width: 300px;
      height: 300px;
    }
  </style>
</head>

<body>
  <p>点击“尝试一下”按钮,改变 DIV 元素的 outline-offset 属性:</p>
  <button onclick="myFunction()">尝试一下</button>
  <div id="myDIV">
    <h1>Hello</h1>
  </div>
  <script>
    function myFunction() {
      document.getElementById("myDIV").style.outlineOffset = "15px";
    }
  </script>

</body>
</html>

尝试一下 »


定义和用法

outlineOffset 属性对轮廓进行偏移,并在边框边缘进行绘制。

轮廓与边框有两方面的不同:

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

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

除了 Internet Explorer,其他所有的主流浏览器都支持 outlineOffset 属性。


语法

返回 outlineOffset 属性:

object.style.outlineOffset

设置 outlineOffset 属性:

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

属性值

描述
length 轮廓与边框边缘的距离。默认值是 0。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

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

相关文章

CSS 参考手册:outline-offset 属性


Style 对象参考手册 Style 对象