scroll-margin-inline属性用于将所有滚动边距设置为一次滚动元素的开始和结束。该属性是scroll-margin-inline-start和scroll-margin-inline-end属性的简写。开始和结束侧的选择取决于写入模式。对于horizontal-tb写入模式,开始侧和结束侧分别是左侧和右侧。
- 其中horizontal-tb代表水平的自上而下。
类似地,对于verticle-rl或verticle-lr写入模式,开始侧和结束侧分别是顶侧和底侧。
- 其中verticle-rl是从右到左的顶点,而verticle-lr是从左到右的顶点。
用法:
scroll-margin-inline:length
或者
scroll-margin-inline:Global_Values
属性值:scroll-margin-inline属性接受上面提到和下面描述的两个属性。
- length:此属性引用以长度单位(例如em,px,rem,vh等)定义的值。
- Global_Values:此属性引用全局值,例如Inherit,Initial,unset等。
注意:scroll-margin-inline不接受百分比值作为长度。
例:在此示例中,通过滚动到示例内容的两个界面之间的某个点,可以看到scroll-margin-inline的效果。
HTML
<!DOCTYPE html>
<html>
<head>
<style>
.scroll {
width:300px;
height:300px;
overflow-x:scroll;
display:flex;
box-sizing:border-box;
scroll-snap-type:x mandatory;
}
.scroll>div {
flex:0 0 300px;
border:1px solid #000;
background-color:#57e714;
color:#fff;
font-size:30px;
display:flex;
align-items:center;
justify-content:center;
scroll-snap-align:end;
}
.scroll>div:nth-child(2n) {
background-color:#fff;
color:#0fe962;
}
.scroll>div:nth-child(2) {
scroll-margin-inline:2rem;
}
.scroll>div:nth-child(3) {
scroll-margin-inline:3rem;
}
</style>
</head>
<body>
<div class="scroll">
<div>Geek 1</div>
<div>Geek 2</div>
<div>Geek 3</div>
<div>Geek 4</div>
</div>
</body>
</html>
输出:
支持的浏览器:
- Firefox
- Chrome(不支持)
- 边(不支持)
- Safari(不支持)
- Internet Explorer(不支持)
- Opera(不支持)
相关用法
- CSS transition-property用法及代码示例
- CSS table-layout用法及代码示例
- CSS text-align用法及代码示例
- CSS border-top-width用法及代码示例
- CSS isolation属性用法及代码示例
- CSS border-inline-start-style属性用法及代码示例
- CSS column-rule-width用法及代码示例
- CSS word-spacing用法及代码示例
- CSS animation-delay用法及代码示例
- CSS margin-top用法及代码示例
- CSS grid属性用法及代码示例
- CSS font-size-adjust用法及代码示例
- CSS visibility属性用法及代码示例
- CSS grid-template-columns用法及代码示例
- CSS height属性用法及代码示例
- CSS transform-origin用法及代码示例
- CSS animation-name用法及代码示例
- CSS flex-wrap用法及代码示例
- CSS align-content用法及代码示例
- CSS page-break-before属性用法及代码示例
- CSS empty-cells用法及代码示例
注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 CSS scroll-margin-inline Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。