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


CSS scroll-margin-block-end属性用法及代码示例


scroll-margin-block-end 属性用于一次将所有滚动边距设置为滚动元素的结束侧。此属性定义块尺寸末尾的滚动捕捉区域的边距,用于将此框捕捉到捕捉端口。

用法:

scroll-margin-block-end:length

/* Or */

scroll-margin-block-end:Global_Values

属性值:此属性接受上面提到和下面描述的两个属性:

  • length:这个属性是指用长度单位定义的值,如 em、px、rem、vh 等。
  • Global_Values:此属性引用全局值,例如Inherit,Initial,unset等。

注意: scroll-margin-block-端不接受百分比值作为长度。

例:在此示例中,您可以通过滚动到示例内容的两个 “interfaces” 之间的中间点来查看 scroll-margin-block-end 的效果。



HTML


<!DOCTYPE html>
<html>
  
<head>
    <style>
  
        .interfaces {
              width:278px;
              height:296px;
              scroll-snap-align:end none;
              display:flex;
              align-items:center;
              justify-content:center;
              font-size:60px;
              color:white;
        }
        .doc {
              width:300px;
              height:300px;
              overflow-x:hidden;
              overflow-y:auto;
              white-space:nowrap;
              scroll-snap-type:y mandatory;
        }
  
    </style>
</head>
  
<body>
  
    <div class="doc">
        <div class="interfaces" style=
              "background-color:rgb(178, 248, 16); 
              scroll-margin-block-end:90px;">
              Geek 1
        </div>
  
        <div class="interfaces" style=
              "color:black; 
              scroll-margin-block-end:90px;">
              Geek 2
        </div>
  
        <div class="interfaces" style=
              "background-color:green; 
              scroll-margin-block-end:90px;">
              Geek 3
        </div>
  
        <div class="interfaces" style=
              "color:green; 
              scroll-margin-block-end:90px;">
              Geek 4
        </div>
  
        <div class="interfaces" style=
              "background-color:rgb(34, 177, 34); 
              scroll-margin-block-end:90px;">
              Geek 5
        </div>
              
        <div class="interfaces" style=
              "background-color:rgb(108, 216, 162); 
              scroll-margin-block-end:90px;">
              Geek 6
        </div>
    </div>
  
</body>
  
</html>

输出:此示例显示滚动时 90 像素的对齐区域。

支持的浏览器:

  • Chrome
  • Opera
  • Edge
  • Firefox



相关用法


注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 CSS scroll-margin-block-end property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。