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/web/html/element/li/index.html | 154 ++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 files/ko/web/html/element/li/index.html (limited to 'files/ko/web/html/element/li') diff --git a/files/ko/web/html/element/li/index.html b/files/ko/web/html/element/li/index.html new file mode 100644 index 0000000000..03d7df653a --- /dev/null +++ b/files/ko/web/html/element/li/index.html @@ -0,0 +1,154 @@ +--- +title:
  • +slug: Web/HTML/Element/li +tags: + - Element + - HTML + - HTML grouping content + - Reference +translation_of: Web/HTML/Element/li +--- +
    {{HTMLRef}}
    + +

    HTML <li> 요소는 목록의 항목을 나타냅니다. 반드시 정렬 목록({{htmlelement("ol")}}), 비정렬 목록({{htmlelement("ul")}}, 혹은 메뉴({{htmlelement("menu")}}) 안에 위치해야 합니다. 메뉴와 비정렬 목록에서는 보통 불릿으로 항목을 나타내고, 정렬 목록에서는 숫자나 문자를 사용한 오름차순 카운터로 나타냅니다.

    + +
    {{EmbedInteractiveExample("pages/tabbed/li.html", "tabbed-shorter")}}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    콘텐츠 카테고리없음.
    가능한 콘텐츠플로우 콘텐츠.
    태그 생략다른 <li> 요소 바로 뒤따르거나 자신이 부모의 마지막 자식인 경우 닫는 태그를 생략할 수 있습니다.
    가능한 부모 요소{{HTMLElement("ul")}}, {{HTMLElement("ol")}}, {{HTMLElement("menu")}} 요소.
    가능한 ARIA 역할{{ARIARole("menuitem")}}, {{ARIARole("menuitemcheckbox")}}, {{ARIARole("menuitemradio")}}, {{ARIARole("option")}}, {{ARIARole("presentation")}}, {{ARIARole("radio")}}, {{ARIARole("separator")}}, {{ARIARole("tab")}}, {{ARIARole("treeitem")}}
    DOM 인터페이스{{domxref("HTMLLIElement")}}
    + +

    특성

    + +

    이 요소는 전역 특성을 포함합니다.

    + +
    +
    {{htmlattrdef("value")}}
    +
    {{HTMLElement("ol")}} 요소 내부에서 항목의 현재 서수 값을 나타내는 정수. 리스트가 로마 숫자나 문자로 표시되더라도 이 특성에는 숫자만 넣을수 있습니다. value를 지정한 항목을 뒤따르는 다른 항목은 이 값에서부터 번호를 매깁니다. value 속성은 비정렬 목록({{HTMLElement("ul")}})과 메뉴({{HTMLElement("menu")}})에서는 아무 의미가 없습니다. +
    참고: HTML4에서는 value의 사용을 중단했지만 HTML5에서 다시 도입했습니다.
    +
    +
    {{htmlattrdef("type")}} {{Deprecated_inline}}
    +
    넘버링 타입을 나타내는 문자. +
      +
    • a: 소문자 글자
    • +
    • A: 대문자 글자
    • +
    • i: 소문자 로마 숫자
    • +
    • I: 대문자 문자 숫자
    • +
    • 1: 숫자
    • +
    + 부모 {{HTMLElement("ol")}} 요소에서 지정하는 유형을 덮어씁니다. + +
    참고: 이 속성은 사용 중단됐습니다. 대신 CSS {{cssxref("list-style-type")}} 속성을 사용하세요.
    +
    +
    + +

    예제

    + +

    더 자세한 예제는 {{htmlelement("ol")}}과 {{htmlelement("ul")}}을 참고하세요.

    + +

    정렬 목록

    + +
    <ol>
    +    <li>first item</li>
    +    <li>second item</li>
    +    <li>third item</li>
    +</ol>
    +
    + +

    {{EmbedLiveSample("정렬_목록")}}

    + +

    사용자 지정 값을 가진 정렬 목록

    + +
    <ol type="I">
    +    <li value="3">third item</li>
    +    <li>fourth item</li>
    +    <li>fifth item</li>
    +</ol>
    +
    + +

    {{EmbedLiveSample("사용자_지정_값을_가진_정렬_목록")}}

    + +

    비정렬 목록

    + +
    <ul>
    +    <li>first item</li>
    +    <li>second item</li>
    +    <li>third item</li>
    +</ul>
    + +

    {{EmbedLiveSample("비정렬_목록")}}

    + +

    명세

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    명세상태주석
    {{SpecName('HTML WHATWG', 'grouping-content.html#the-li-element', '<li>')}}{{Spec2('HTML WHATWG')}}
    {{SpecName('HTML5 W3C', 'the-li-element.html#the-li-element', '<li>')}}{{Spec2('HTML5 W3C')}}
    {{SpecName('HTML4.01', 'lists.html#h-10.2', '<li>')}}{{Spec2('HTML4.01')}}The type attribute has been deprecated.
    + +

    브라우저 호환성

    + + + +

    {{Compat("html.elements.li")}}

    + +

    같이 보기

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