aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/scroll-margin/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/css/scroll-margin/index.html')
-rw-r--r--files/zh-cn/web/css/scroll-margin/index.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/scroll-margin/index.html b/files/zh-cn/web/css/scroll-margin/index.html
new file mode 100644
index 0000000000..cfe4143ea2
--- /dev/null
+++ b/files/zh-cn/web/css/scroll-margin/index.html
@@ -0,0 +1,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>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<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>