aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/scroll-margin/index.html
blob: 63652e9d2bd119d2682fa579525035e991202f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: scroll-margin
slug: Web/CSS/scroll-margin
translation_of: Web/CSS/scroll-margin
---
<div>{{CSSRef}}</div>

<p><strong><code>scroll-margin</code></strong> 属性是修改一系列 <code>scroll-margin</code> 手写特性的快捷方式, 它分配值的方式与 <code>margin</code> 属性为各个 <code>margin-*</code> 手写特性分配值的方式非常类似。</p>

<div>{{EmbedInteractiveExample("pages/css/scroll-margin.html")}}</div>

<p class="hidden">这个示例的代码存放在 Github 仓库. 如果你想对这个项目贡献代码, 请从 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> 克隆项目,并且向我们提交 PR。</p>

<p><code>scroll-margin</code> 属性的值代表用于将盒元素拖拽到显示区域的拖拽滚动区域的起点。拖拽滚动区域由是由转换后边框大小的盒元素决定的,它会找到盒元素的矩形边界(在滚动的容器的坐标空间轴上),并添加指定的起点。</p>

<p>{{cssinfo}}</p>

<h2 id="Syntax" name="Syntax">Syntax</h2>

<pre class="brush: css">/* &lt;length&gt; values */
scroll-margin: 10px;
scroll-margin: 1em .5em 1em 1em;

/* Global values */
scroll-margin: inherit;
scroll-margin: initial;
scroll-margin: unset;
</pre>

<h3 id="Values" name="Values">Values</h3>

<dl>
 <dt>{{cssxref("&lt;length&gt;")}}</dt>
 <dd>从滚动容器的相应边缘开始。</dd>
</dl>

<h3 id="Formal_syntax">Formal syntax</h3>

{{csssyntax}}

<h2 id="Specification">Specification</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("CSS Scroll Snap Points", "#propdef-scroll-margin", "scroll-margin")}}</td>
   <td>{{Spec2("CSS Scroll Snap Points")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>



<p>{{Compat("css.properties.scroll-margin")}}</p>