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


CSS scroll-margin-right屬性用法及代碼示例


scroll-margin-right屬性用於一次將所有滾動邊距設置到元素的右側。為scroll-margin-right指定的值確定應該本質上保留在快照端口之外的頁麵數量。

因此,scroll-margin-right值表示定義了滾動捕捉區域的起始點,該區域用於將該框捕捉到捕捉端口。

用法:

scroll-margin-right:length
/* Or */
scroll-margin-right:Global_Value

屬性值:該屬性接受上麵提到並在下麵描述的two-properties:

  • length:此屬性引用以長度單位exp:px,em,vh等定義的值。
  • Global_Values:此屬性引用全局值,例如Inherit,Initial,unset等。

注意: scroll-margin-right不接受百分比值作為長度。



例:在此示例中,通過滾動到示例內容的“interfaces”中的兩個之間的一個點,可以看到scroll-margin-right的效果。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        img { 
              width:300px; 
              height:280px; 
              scroll-snap-align:none end; 
        } 
        .Gallery { 
              width:300px; 
              height:300px; 
              overflow-x:auto; 
              overflow-y:hidden; 
              white-space:nowrap; 
              scroll-snap-type:x mandatory; 
        } 
    </style> 
</head> 
<body> 
    <div class="photoGallery"> 
  
          <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131450/img6-300x82.png" 
          style="scroll-margin-right:50px;"> 
  
          <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131449/img5.jpeg" 
          style="scroll-margin-right:60px;"> 
  
          <img src= 
"https://media.geeksforgeeks.org/wp-content/uploads/20200723131452/img4-300x167.png" 
          style="scroll-margin-right:-50px;"> 
  
    </div> 
</body> 
</html>

輸出:

支持的瀏覽器:

  • Chrome
  • Firefox
  • Opera
  • Safari(部分支持)
  • Edge
  • Internet Explorer(不支持)

相關用法


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