From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/glossary/attribute/index.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 files/ko/glossary/attribute/index.html (limited to 'files/ko/glossary/attribute') 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 +--- +
{{QuickLinksWithSubpages("/ko/docs/Glossary")}}
+ +

특성(attribute)은 {{glossary("tag", "태그")}}를 확장해 동작 방식을 바꾸거나 메타데이터를 제공합니다.

+ +

특성은 항상 name="value"의 형태를 따릅니다. (특성 식별자 뒤에 특성 값)

+ +

등호 또는 값 없는 특성이 보일 때도 있습니다. {{glossary("HTML")}}에서는 빈 문자열을 제공하는 단축 표기법이고, {{glossary("XML")}}에서는 특성 이름을 제공하는 단축 표기법입니다.

+ +
<input required>
+<!-- 다음과 같음 -->
+<input required="">
+<!-- 다음과 같음 -->
+<input required="required">
+
+ +

더 알아보기

+ +

기술 참고서

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