blob: bfdb7dfd21e824f11ba58221575250ab056121c3 (
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
|
---
title: <mtd>
slug: Web/MathML/Element/mtd
translation_of: Web/MathML/Element/mtd
---
<p>{{MathMLRef()}}</p>
<p>MathML の <code><mtd></code> 要素は表組み・行列のセルを表します。{{ MathMLElement("mtr") }} 要素の中にしか現れません。この要素は <a href="/ja/docs/HTML">HTML</a> の {{ HTMLElement("td") }} 要素に似ています。</p>
<h2 id="属性">属性</h2>
<dl>
<dt id="attr-class-id-style">class, id, style</dt>
<dd>Provided for use with <a href="/ja/docs/CSS">stylesheets</a>.</dd>
<dt id="attr-columnalign">columnalign</dt>
<dd>セル内の水平方向の揃えを指定します。{{ MathMLElement("mtable") }} や {{ MathMLElement("mtr") }} で指定された値を上書きします。<br>
取り得る値は<code> left,</code><code>center,</code><code>right</code> です。</dd>
<dt id="attr-columnspan">columnspan</dt>
<dd>セルが何列分を占めるかを非負整数で指定します。</dd>
<dt>groupalign</dt>
<dd> </dd>
<dt id="attr-href">href</dt>
<dd>Used to set a hyperlink to a specified URI.</dd>
<dt id="attr-mathbackground">mathbackground</dt>
<dd>The background color. You can use <code>#rgb</code>, <code>#rrggbb</code> and <a href="/ja/docs/CSS/color_value#Color_Keywords">HTML color names</a>.</dd>
<dt id="attr-mathcolor">mathcolor</dt>
<dd>The text color. You can use <code>#rgb</code>, <code>#rrggbb</code> and <a href="/ja/docs/CSS/color_value#Color_Keywords">HTML color names</a>.</dd>
<dt id="attr-rowalign">rowalign</dt>
<dd>セル内の垂直方向の揃えを指定します。{{ MathMLElement("mtable") }} や {{ MathMLElement("mtr") }} で指定された値を上書きします。<br>
取り得る値は <code>axis</code>,<code>baseline</code>,<code>bottom,center,top</code> です。</dd>
<dt id="attr-rowspan">rowspan</dt>
<dd>セルが何行分を占めるかを非負整数で指定します。</dd>
</dl>
<h2 id="ブラウザごとの互換性">ブラウザごとの互換性</h2>
<p>{{Compat("mathml.elements.mtd")}}</p>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table" style="height: 49px; width: 1000px;">
<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.mtd', 'mtd') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Current specification</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.mtd', 'mtd') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
<h2 id="See_also">See also</h2>
<ul>
<li>{{ MathMLElement("mtable") }}</li>
<li>{{ MathMLElement("mtr") }}</li>
</ul>
|