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


HTML Style borderRightColor用法及代码示例


borderRightColor属性允许我们设置/获取元素右侧的颜色。
用法:

  • 它用于返回borderRightColor属性。
    object.style.borderRightColor
  • 它用于返回borderRightColor属性。
    object.style.borderRightColor = "color|transparent|initial|inherit"
    

返回值:borderRightColor属性返回元素右边框的颜色。
属性值:

  • color:它指定相应元素的右边框颜色。黑色是默认颜色。
    • 用法:
      borderRightColor = "red"

      例:


      <!DOCTYPE html> 
      <html> 
        
      <head> 
          <style> 
              #GFG_Div { 
                  width:200px; 
                  margin-left:210px; 
                  border:thick solid green; 
              } 
          </style> 
      </head> 
        
      <body align="center"> 
          <p> Click to change the right border color of element.</p> 
          <button type="button" onclick="myGeeks()"> 
              Click to change 
          </button> 
          <br> 
          <br> 
          <div id="GFG_Div">GeeksforGeeks</div> 
          <script> 
              function myGeeks() { 
                  document.getElementById("GFG_Div") 
                      .style.borderRightColor = "red"; 
              } 
          </script> 
        
      </body> 
        
      </html>

      输出:

      • 在点击按钮之前
      • 单击按钮后
    • 用法:
      borderRightColor = "yellow"

      例:

      <!DOCTYPE html> 
      <html> 
        
      <head> 
          <style> 
              #GFG_Div { 
                  width:200px; 
                  margin-left:210px; 
                  border:thick solid green; 
              } 
          </style> 
      </head> 
        
      <body align="center"> 
          <p> Click to change the right border color of element.</p> 
          <button type="button" onclick="myGeeks()"> 
              Click to change 
          </button> 
          <br> 
          <br> 
          <div id="GFG_Div">GeeksforGeeks</div> 
          <script> 
              function myGeeks() { 
                  document.getElementById("GFG_Div") 
                      .style.borderRightColor = "yellow"; 
              } 
          </script> 
        
      </body> 
        
      </html>

      输出:

      • 在点击按钮之前
      • 单击按钮后
  • transparent:它将相应元素的右边框颜色设置为透明。
    • 用法:
      borderRightColor = "transparent"

      例:

      <!DOCTYPE html> 
      <html> 
        
      <head> 
          <style> 
              #GFG_Div { 
                  width:200px; 
                  margin-left:210px; 
                  border:thick solid green; 
              } 
          </style> 
      </head> 
        
      <body align="center"> 
          <p> Click to change the right border color of element.</p> 
          <button type="button" onclick="myGeeks()"> 
              Click to change 
          </button> 
          <br> 
          <br> 
          <div id="GFG_Div">GeeksforGeeks</div> 
          <script> 
              function myGeeks() { 
                  document.getElementById("GFG_Div") 
                      .style.borderRightColor = "transparent"; 
              } 
          </script> 
        
      </body> 
        
      </html>

      输出:

      • 在点击按钮之前
      • 单击按钮后
  • initial:如果未为此字段指定任何值,则它将从element的父级继承。如果没有父元素,则表示此元素是root,则它采用初始(或默认)值。
  • inherit:此关键字将属性的初始(或默认)值应用于元素。初始值不应与浏览器样式表指定的值混淆。当borderColor设置为initial时,它显示为黑色(默认)。

浏览器支持:下面列出了DOM Style borderRightColor属性支持的浏览器:

  • Google Chrome:受支持
  • Internet Explorer:受支持
  • Mozilla firefox:受支持
  • Safari:受支持
  • Opera :支持


相关用法


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