aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/element
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/element
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/element')
-rw-r--r--files/ja/glossary/element/index.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/files/ja/glossary/element/index.html b/files/ja/glossary/element/index.html
new file mode 100644
index 0000000000..d5985a9168
--- /dev/null
+++ b/files/ja/glossary/element/index.html
@@ -0,0 +1,22 @@
+---
+title: Element (要素)
+slug: Glossary/Element
+tags:
+ - CodingScripting
+ - Glossary
+ - HTML
+translation_of: Glossary/Element
+---
+<p><strong>要素</strong> (element) はウェブページの一部分です。{{Glossary("XML")}} と {{Glossary("HTML")}} では、要素はデータ項目やテキストのかたまりや画像を含んだり、何も含まなかったりします。ふつうは要素は {{Glossary("attribute", "属性")}} (attributes) つきの開始タグ (an opening tag) と、囲まれたテキストコンテンツと、閉じタグ (a closing tag) を含んでいます。</p>
+
+<p><img alt="Example: in &lt;p class=&quot;nice&quot;>Hello world!&lt;/p>, '&lt;p class=&quot;nice&quot;>' is an opening tag, 'class=&quot;nice&quot;' is an attribute and its value, 'Hello world!' is enclosed text content, and '&lt;/p>' is a closing tag." src="https://mdn.mozillademos.org/files/7659/anatomy-of-an-html-element.png" style="height: 181px; width: 609px;"></p>
+
+<p>要素と{{glossary("tag", "タグ")}}は同じでは<em>ありません</em>。タグはソースコード内で要素を開始させたり終了させたりするのに対し、要素は {{Glossary("DOM")}} 、つまり{{Glossary("browser", "ブラウザー")}}に表示するドキュメントモデルの一部分です。</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Learn/HTML/Introduction_to_HTML/Getting_started">要素についての詳細</a></li>
+ <li><a href="/ja/docs/Web/Web_Components/Using_custom_elements">Web_Components/Custom_Elements</a></li>
+ <li>DOM の中で要素を表現する{{domxref("Element")}} インターフェイス</li>
+</ul>