From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/mathml/element/munder/index.html | 87 +++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 files/ja/web/mathml/element/munder/index.html (limited to 'files/ja/web/mathml/element/munder') diff --git a/files/ja/web/mathml/element/munder/index.html b/files/ja/web/mathml/element/munder/index.html new file mode 100644 index 0000000000..aebcd251ac --- /dev/null +++ b/files/ja/web/mathml/element/munder/index.html @@ -0,0 +1,87 @@ +--- +title: +slug: Web/MathML/Element/munder +tags: + - MathML +translation_of: Web/MathML/Element/munder +--- +
{{MathMLRef}}
+ +

The MathML <munder> element is used to attach an accent or a limit under an expression. It uses the following syntax: <munder> 数式表現 下付き文字 </munder>

+ +

属性

+ +
+
accentunder
+
If true, the element is an accent, which is drawn closer to the base expression.
+ If false (default value), the element is a limit under the base expression.
+
align {{deprecated_inline}}
+
left、 centerあるいはrightを指定することによって下付き文字をどの位置に表示するかを決めることができます。ただ、この属性は非推奨で近日中に廃止されます。代わりにCSSプロパティtext-alignを使用してください。
+
class, id, style
+
CSSで装飾を行なう際に使われます。
+
href
+
ハイパーリンクを設定する際に使われます。
+
mathbackground
+
背景色を指定します。 #rgb#rrggbbのような16進表現やHTML color namesを用いることができます。
+
mathcolor
+
文字の色を指定します。 #rgb#rrggbbのような16進表現やHTML color namesを用いることができます。
+
+ +

+ +

レンダリングのサンプル(画像): x+y+z

+ +

ブラウザのレンダリング結果: x + y + z

+ +
<math>
+
+<munder accentunder="true">
+  <mrow>
+    <mi> x </mi>
+    <mo> + </mo>
+    <mi> y </mi>
+    <mo> + </mo>
+    <mi> z </mi>
+  </mrow>
+  <mo> &#x23DF; <!--BOTTOM CURLY BRACKET--> </mo>
+</munder>
+
+</math>
+
+ +

仕様

+ + + + + + + + + + + + + + + + + + + + + +
仕様書状態備考
{{ SpecName('MathML3', 'chapter3.html#presm.munder', 'munder') }}{{ Spec2('MathML3') }}Current specification
{{ SpecName('MathML2', 'chapter3.html#presm.munder', 'munder') }}{{ Spec2('MathML2') }}Initial specification
+ +

ブラウザごとの互換性

+ + + +

{{Compat("mathml.elements.munder")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf