aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/attribute/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/glossary/attribute/index.html')
-rw-r--r--files/ko/glossary/attribute/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/ko/glossary/attribute/index.html b/files/ko/glossary/attribute/index.html
new file mode 100644
index 0000000000..b14d2ffbee
--- /dev/null
+++ b/files/ko/glossary/attribute/index.html
@@ -0,0 +1,32 @@
+---
+title: 특성
+slug: Glossary/Attribute
+tags:
+ - CodingScripting
+ - Glossary
+ - HTML
+translation_of: Glossary/Attribute
+---
+<div>{{QuickLinksWithSubpages("/ko/docs/Glossary")}}</div>
+
+<p><strong>특성</strong>(attribute)은 {{glossary("tag", "태그")}}를 확장해 동작 방식을 바꾸거나 메타데이터를 제공합니다.</p>
+
+<p>특성은 항상 <code>name="value"</code>의 형태를 따릅니다. (특성 식별자 뒤에 특성 값)</p>
+
+<p>등호 또는 값 없는 특성이 보일 때도 있습니다. {{glossary("HTML")}}에서는 빈 문자열을 제공하는 단축 표기법이고, {{glossary("XML")}}에서는 특성 이름을 제공하는 단축 표기법입니다.</p>
+
+<pre class="brush: html">&lt;input required&gt;
+&lt;!-- 다음과 같음 --&gt;
+&lt;input required=""&gt;
+&lt;!-- 다음과 같음 --&gt;
+&lt;input required="required"&gt;
+</pre>
+
+<h2 id="더_알아보기">더 알아보기</h2>
+
+<h3 id="기술_참고서">기술 참고서</h3>
+
+<ul>
+ <li><a href="/en-US/docs/Web/HTML/Attributes">HTML 특성 참고서</a></li>
+ <li>HTML <a href="/ko/docs/Web/HTML/Global_attributes">전역 특성</a></li>
+</ul>