diff options
Diffstat (limited to 'files/ko/web/api/htmllielement/index.html')
-rw-r--r-- | files/ko/web/api/htmllielement/index.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/files/ko/web/api/htmllielement/index.html b/files/ko/web/api/htmllielement/index.html new file mode 100644 index 0000000000..8d75b5f623 --- /dev/null +++ b/files/ko/web/api/htmllielement/index.html @@ -0,0 +1,77 @@ +--- +title: HTMLLIElement +slug: Web/API/HTMLLIElement +translation_of: Web/API/HTMLLIElement +--- +<div> +<div>{{ APIRef("HTML DOM") }}</div> +</div> + +<p> <strong><code>HTMLLIElement</code></strong> 인터페이스는 리스트 엘리먼트를 조작하기 위한 특정 프로퍼티와 메소드들을 제공합니다.</p> + +<p>( 정규 {{domxref("HTMLElement")}} 인터페이스의 상속을통해 사용이 가능합니다. )</p> + +<p>{{InheritanceDiagram(600, 120)}}</p> + +<h2 id="Properties">Properties</h2> + +<p><em>부모인 {{domxref("HTMLElement")}}에서 상속받습니다.</em></p> + +<dl> + <dt>{{domxref("HTMLLIElement.type")}} {{obsolete_inline}}</dt> + <dd>는 {{domxref("DOMString")}} 의 <code>"disc"</code>, <code>"square"</code> 나 <code>"circle"</code> 같은 bullets 타입을 대표합니다.<br> + 리스트 유형을 정의하는 표준 정의 방법은 CSS {{cssxref("list-style-type")}} 프로퍼티를 통해서 이므로, 스트립트를 통하여 CSSSOM 메소드를 사용하세요.</dd> + <dt>{{domxref("HTMLLIElement.value")}}</dt> + <dd>는 주어진 {{HTMLElement("ol")}} 리스트 엘리먼트 안에서 서수의 위치를 가르키는 <font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);">오랜</span></font> 서수적 포지션입니다. 이것은 HTML의 {{HTMLElement("li")}}엘리먼트의 {{htmlattrxref("value", "li")}}속성을 나타냅니다. 그리고 <code>0</code> 보다 작을 수도 있습니다.<br> + 만일 {{HTMLElement("li")}} 엘리먼트가 {{HTMLElement("ol")}} 엘리먼트의 자식이 아니라면, 프로퍼티는 아무 의미가 없게됩니다.</dd> +</dl> + +<h2 id="Methods">Methods</h2> + +<p><em>특정 메소드가 없으며, 부모로부터 프로퍼티를 상속 받습니다.{{domxref("HTMLElement")}}.</em></p> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "#htmllielement", "HTMLLIElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "grouping-content.html#the-li-element", "HTMLLIElement")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>The following property is now obsolete: <code>type</code>.</td> + </tr> + <tr> + <td>{{SpecName('DOM2 HTML', 'html.html#ID-74680021', 'HTMLLIElement')}}</td> + <td>{{Spec2('DOM2 HTML')}}</td> + <td>No change from {{SpecName("DOM1")}}.</td> + </tr> + <tr> + <td>{{SpecName('DOM1', 'level-one-html.html#ID-74680021', 'HTMLLIElement')}}</td> + <td>{{Spec2('DOM1')}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<div> + + +<p>{{Compat("api.HTMLLIElement")}}</p> +</div> + +<h2 id="See_also">See also</h2> + +<ul> + <li>The HTML element implementing this interface: {{HTMLElement("li")}}</li> +</ul> |