aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/attribute/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/glossary/attribute/index.html')
-rw-r--r--files/ja/glossary/attribute/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/ja/glossary/attribute/index.html b/files/ja/glossary/attribute/index.html
new file mode 100644
index 0000000000..5cb5ea2a33
--- /dev/null
+++ b/files/ja/glossary/attribute/index.html
@@ -0,0 +1,30 @@
+---
+title: Attribute (属性)
+slug: Glossary/Attribute
+tags:
+ - CodingScripting
+ - Glossary
+ - HTML
+translation_of: Glossary/Attribute
+---
+<p><span class="glossaryLink new"><ruby><strong>属性</strong><rp> (</rp><rt>attribute</rt><rp>) </rp></ruby></span>属性は{{Glossary("element", "要素")}}を拡張し、動作を変更したりメタデータを提供したりします。</p>
+
+<p>属性は常に <code>name="value"</code> の形式を取ります (属性の識別子に関連付けられた値が続きます)。</p>
+
+<p>等号や値のない属性を見かけることもあります。これは HTML では空文字列を、 XML では属性名を提供する略記法です。</p>
+
+<pre class="brush: html notranslate">&lt;input required&gt;
+&lt;!-- is the same as… --&gt;
+&lt;input required=""&gt;
+&lt;!-- or --&gt;
+&lt;input required="required"&gt;
+</pre>
+
+<h2 id="Learn_more" name="Learn_more">詳細情報</h2>
+
+<h3 id="Technical_reference" name="Technical_reference">技術リファレンス</h3>
+
+<ul>
+ <li><a href="/ja/docs/Web/HTML/Attributes">HTML 属性リファレンス</a></li>
+ <li><a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a></li>
+</ul>