當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


CSS border-image-width用法及代碼示例


CSS border-image-width屬性用於設置邊框圖像的寬度。可以通過提供多個值來設置。

  • 如果僅提供一個值,則將其應用於所有四個麵。
  • 如果指定了兩個值,則第一個值將應用於“頂部和底部”,第二個值將應用於“左側和右側”。
  • 如果指定了三個值,則第一個值分配給頂部,第二個值分配給“左右”,第三個值分配給底部。
  • 如果給出了四個值,則將它們應用於上,右,下和左(順時針)順序。

用法:

border-image-width:number | % | auto | initial | inherit;

屬性值:


  • 長度:用於以相對方式指定值。
  • 百分比:用於以百分比形式指定寬度。
  • 數:用於將寬度設置為border-width對應計算值的倍數
  • 初始:將此屬性設置為其默認值
  • 繼承:用於從父元素繼承值

範例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS|border-image-width Property</title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
        } 
          
        #gfg { 
            border:10px solid transparent; 
            padding:15px; 
            border-image-source:  
        url(https://media.geeksforgeeks.org/wp-content/uploads/border2-2.png); 
            border-image-repeat:round; 
            border-image-slice:30; 
            border-image-width:20px; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 id="gfg">GeeksForGeeks</h1> 
    <h2 id="gfg">CSS|border-image-width Property</h2> 
  
</body> 
  
</html>

輸出:

範例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>CSS|border-image-width Property</title> 
    <style> 
        h1, 
        h2 { 
            color:green; 
        } 
          
        #geek1 { 
            border:10px solid transparent; 
            padding:15px; 
            border-image-source:  
        url(https://media.geeksforgeeks.org/wp-content/uploads/border2-2.png); 
            border-image-slice:30; 
            border-image-width:10px 20px; 
        } 
          
        #geek2 { 
            border:10px solid transparent; 
            padding:10px; 
            border-image-source:  
         url(https://media.geeksforgeeks.org/wp-content/uploads/border2-2.png); 
            border-image-slice:30; 
            border-image-width:1.2rem; 
        } 
          
        #geek3 { 
            border:10px solid transparent; 
            padding:15px; 
            border-image-source:  
         url(https://media.geeksforgeeks.org/wp-content/uploads/border2-2.png); 
            border-image-slice:30; 
            border-image-width:10% 20% 10% 20%; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 id="gfg">GeeksForGeeks</h1> 
    <h2 id="gfg">CSS|border-image-width Property</h2> 
    <p id="geek1"> Geek one </p> 
    <p id="geek2"> Geek two </p> 
    <p id="geek3" style="text-align:center"> Geek three </p> 
  
</body> 
  
</html> 
                         

輸出:

支持的瀏覽器:下麵列出了border-image-width屬性支持的瀏覽器:

  • 穀歌瀏覽器15.0
  • 邊11.0
  • Firefox 13.0
  • Opera 15.0
  • 蘋果Safari 6.0


相關用法


注:本文由純淨天空篩選整理自Abhishek7大神的英文原創作品 CSS | border-image-width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。