diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/mathml/element/mtd | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/mathml/element/mtd')
-rw-r--r-- | files/ja/web/mathml/element/mtd/index.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/files/ja/web/mathml/element/mtd/index.html b/files/ja/web/mathml/element/mtd/index.html new file mode 100644 index 0000000000..bfdb7dfd21 --- /dev/null +++ b/files/ja/web/mathml/element/mtd/index.html @@ -0,0 +1,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> |