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


HTML Style borderLeft用法及代码示例


DOM样式borderLeft属性用于设置或返回元素的三个不同的border-left属性,例如border-left-width,border-left-style和border-left-color。

用法:

  • 它用于返回borderLeft属性。
    object.style.borderLeft
  • 它用于设置borderLeft属性。
    object.style.borderLeft = "width style color|initial|inherit"

属性值:


  • width:这将设置左边框的宽度。
  • style:这将设置左边框的样式。
  • color:这将设置左边框的颜色。
  • initial:这会将属性设置为其默认值。
  • inherit:这将从其父元素继承该属性

返回值:它返回一个字符串值,该字符串值表示元素左边框的宽度,样式和/或颜色。

范例1:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style borderLeft Property  
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;width:50%;" id = "sudo">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style borderLeft Property </h2><br> 
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                document.getElementById("sudo").style.borderLeft  
                                            = "thick solid green";  
            }  
            </script>  
        </center>  
    </body>  
</html>                    

输出:
之前单击按钮:

单击按钮后:

范例2:

<!DOCTYPE html>  
<html>  
    <head>  
        <title> 
            DOM Style borderLeft Property 
        </title>  
    </head>  
      
    <body>  
        <center>  
            <h1 style = "color:green;">  
                GeeksForGeeks  
            </h1>  
              
            <h2>DOM Style borderLeft Property </h2>  
              
            <h3 style = "border:2px solid red;width:50%;"
                id = "sudo">geksforgeeks</h3>  
            <br>  
              
            <button type = "button" onclick = "geeks()">  
                Submit  
            </button>  
              
            <script>  
                function geeks() {  
                    document.getElementById("sudo").style.borderLeft 
                                            = "thick dotted green";  
                }  
            </script>  
        </center>  
    </body>  
</html>                    

输出:
之前单击按钮:

单击按钮后:

支持的浏览器:DOM borderLeft属性支持的浏览器如下:

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


相关用法


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