blob: d82177174c16006d3a0204cfe4d658ad8272802b (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
---
title: margin-block
slug: Web/CSS/margin-block
translation_of: Web/CSS/margin-block
---
<p>{{CSSRef}}{{SeeCompatTable}} </p>
<p><strong><code>margin-block</code></strong>这个<a href="/en-US/docs/Web/CSS" title="CSS">CSS</a>属性定义了一个元素的逻辑块开始和结束边距,根据元素的写入模式、 方向性和文本方向映射到物理边界。</p>
<pre class="brush:css no-line-numbers">/* 有长度的具体的值 */
margin-block: 10px 20px; /* 一个绝对的长度值 */
margin-block: 1em 2em; /* 相对于文本大小的值 */
margin-block: 5% 2%; /* 相对于最近的块容器宽度的值 */
margin-block: 10px; /* 设置开始值和结束值 */
/* 关键字 值 */
margin-block: auto;
/* 全局 值 */
margin-block: inherit;
margin-block: initial;
margin-block: unset;
</pre>
<p>这些值对应的是{{CSSxRef("margin-top")}}和{{CSSxRef("margin-bottom")}},或者 {{CSSxRef("margin-right")}},和{{CSSxRef("margin-left")}},这些属性取决于{{CSSxRef("writing-mode")}},{{CSSxRef("direction")}},和{{CSSxRef("text-orientation")}}。</p>
<p>这些值可以单独设置为{{CSSxRef("margin-block-start")}}和{{CSSxRef("margin-block-end")}}。inline direction属性是{{CSSxRef("margin-inline")}},也可设置为{{CSSxRef("margin-inline-start")}},和{{CSSxRef("margin-inline-end")}}。</p>
<h2 id="语法">语法</h2>
<h3 id="值">值</h3>
<p><code>margin-block</code>属性采用和{{CSSxRef("margin-left")}}属性相同的值。</p>
<h3 id="正规语法">正规语法</h3>
{{CSSSyntax}}
<h2 id="示例">示例</h2>
<h3 id="HTML_部分">HTML 部分</h3>
<pre class="brush: html"><div>
<p class="exampleText">Example text</p>
</div>
</pre>
<h3 id="CSS_部分">CSS 部分</h3>
<pre class="brush: css">div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-rl;
margin-block: 20px 40px;
background-color: #c8c800;
}</pre>
<p>{{EmbedLiveSample("Example", 140, 140)}}</p>
<h2 id="规范">规范</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 Logical Properties", "#propdef-margin-block", "margin-block")}}</td>
<td>{{Spec2("CSS Logical Properties")}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<p>{{CSSInfo}}</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<div class="hidden">这个页面上的兼容性表格是从结构化数据生成的。 如果你想贡献相关数据,请卢兰<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>并向我们发送请求。</div>
<p>{{Compat("css.properties.margin-block")}}</p>
<h2 id="请参考">请参考</h2>
<ul>
<li>所映射的物理特性: {{CSSxRef("margin-top")}},{{CSSxRef("margin-right")}},{{CSSxRef("margin-bottom")}}和{{CSSxRef("margin-left")}}</li>
<li>{{CSSxRef("writing-mode")}},{{CSSxRef("direction")}},{{CSSxRef("text-orientation")}}</li>
</ul>
|