blob: c063dc4f9f467344979150e11f0bb8f27d21c969 (
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
|
---
title: <mspace>
slug: Web/MathML/Element/mspace
translation_of: Web/MathML/Element/mspace
---
<div>{{MathMLRef}}</div>
<p class="summary">MathML<mspace>元素用来表示一段空白,空白的大小由它自身的属性决定。</p>
<h2 id="属性">属性</h2>
<dl>
<dt id="attr-class-id-style">class, id, style</dt>
<dd>用来供<a href="/en-US/docs/CSS">样式表</a>使用。</dd>
<dt id="attr-depth">depth</dt>
<dd>空白在基线下方的高度 (参阅 <a href="/en-US/docs/MathML/Attributes/Values#Lengths">length</a>).</dd>
<dt id="attr-height">height</dt>
<dd>空白在基线上方的高度 (参阅 <a href="/en-US/docs/MathML/Attributes/Values#Lengths">length</a>).</dd>
<dt id="attr-linebreak">linebreak</dt>
<dd>Indicates a line-break at the space. Possible values: <code>auto</code> (default value), <code>newline</code>, <code>nobreak</code>, <code>goodbreak</code>, <code>badbreak</code>.<br>
Starting with MathML 3, it is preferred to use {{ MathMLElement("mo") }} to control linebreaking.</dd>
<dt id="attr-mathbackground">mathbackground</dt>
<dd>用来设置背景色,可以使用<code><strong>#rgb</strong></code>、<strong><code>#rrggbb</code></strong>或者<a href="/zh-CN/docs/Web/CSS/color_value">HTML颜色名</a>。</dd>
<dt id="attr-width">width</dt>
<dd>空白的宽度 (参阅 <a href="/en-US/docs/MathML/Attributes/Values#Lengths">length</a>).</dd>
</dl>
<p>注意,一些像<code>mathcolor</code>、<code>mathvariant</code>或<code>dir</code>这种常用的属性在<code><mspace></code>上是无效的。</p>
<h2 id="例子">例子</h2>
<pre class="brush: html"><math>
<mspace depth="40px" height="20px" />
<mspace width="100px" />
</math>
</pre>
<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('MathML3', 'chapter3.html#presm.mspace', 'mspace') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Current specification</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.mspace', 'mspace') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("mathml.elements.mspace")}}
<h2 id="Gecko说明">Gecko说明</h2>
<ul>
<li><a class="external" href="http://www.w3.org/TR/MathML3/chapter3.html#presm.lbindent.attrs">Indentation attributes</a> 暂时没有实现 (for Gecko see {{ bug("534962") }}).</li>
<li>从Gecko 23.0 {{geckoRelease("23.0")}}开始实现了对<code>width</code>属性负值的支持。</li>
</ul>
<h2 id="相关链接">相关链接</h2>
<ul>
<li>{{ MathMLElement("mpadded") }}</li>
<li>{{ MathMLElement("mphantom") }}</li>
</ul>
|