当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Style outlineOffset用法及代码示例


样式outlineOffset属性用于偏移轮廓并将其绘制到边框边之外。轮廓不像边框那样占用空间。它返回一个表示元素的outline-offset属性的字符串。

用法:

  • 要获得财产
    object.style.outlineOffset
  • 设置属性
    object.style.outlineOffset = "length|initial|inherit"

属性值:


描述
length 以长度单位定义长度。
initial 定义默认的初始值。
inherit 从父元素继承属性

以下示例程序旨在说明Style outlineOffset属性方法:

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Style outlineOffset Property in HTML</title> 
    <style> 
        #samplediv { 
            margin:auto; 
            border:2px green; 
            outline:coral solid 4px; 
            width:250px; 
            height:50px; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Style outlineOffset Property</h2> 
    <br> 
  
    <p>For moving the ouline border outside the border edge, double click the "Change Outline Border" button:</p> 
    <br> 
  
    <button ondblclick="outline()"> 
        Change Outline Border 
    </button> 
  
    <div id="samplediv"> 
        <h1>Geeksforgeeks</h1> 
    </div> 
  
    <script> 
        function outline() { 
            document.getElementById("samplediv") 
                .style.outlineOffset = "20px"; 
        } 
    </script> 
  
</body> 
  
</html>   

输出:

  • 单击按钮之前:
  • 单击按钮后:

支持的浏览器:HTML | DOM样式outlineOffset属性在下面列出:

  • IE浏览器
  • 谷歌浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Style outlineOffset Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。