CSS 데모: list-style-type 데모 버튼을 클릭해 보세요!
selector {
    list-style-type: <counter-style> | <string> | none
}
/* <counter-style> 값 */
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: decimal;
list-style-type: georgian;
list-style-type: korean-hangul-formal;
list-style-type: kannada;
list-style-type: upper-roman;
list-style-type: kannada;
...

/* <string> 값 */
list-style-type: "- ";
list-style-type: "😍 ";
list-style-type: "★";

/* 키워드 값 */
list-style-type: none;

/* 전역 값 */
list-style-type: inherit;
list-style-type: initial;
list-style-type: revert;
list-style-type: revert-layer;
list-style-type: unset;
<h5>list-style-type: "- ";</h5>
<ul class="a">
    <li>라면</li>
    <li>김밥</li>
    <li>돈까스</li>
</ul>
<h5>list-style-type: "😍 ";</h5>
<ul class="b">
    <li>라면</li>
    <li>김밥</li>
    <li>돈까스</li>
</ul>
<h5>list-style-type: "★";</h5>
<ul class="c">
    <li>라면</li>
    <li>김밥</li>
    <li>돈까스</li>
</ul>
.a {
    list-style-type: "- ";
}
.b {
    list-style-type: "😍 ";
}
.c {
    list-style-type: "★";
}
실제 적용된 모습
<h5>list-style-type: none;</h5>
<ul class="d">
    <li>라면</li>
    <li>김밥</li>
    <li>돈까스</li>
</ul>
.d {
    list-style-type: none;
}
실제 적용된 모습
.d {
    list-style-type: none;
    list-style-image: url("heart.png");
}
실제 적용된 모습
<ul>
    <li>
        <ul>
            <li>li</li>
            <li>li</li>
            <li>
                <ul>
                    <li>li</li>
                    <li>li</li>
                    <li>li</li>
                </ul>
            </li>
        </ul>
    </li>
    <li>li</li>
    <li>li</li>
</ul>
<ol>
    <li>li</li>
    <li>li</li>
    <li>li</li>
</ol>
<details>
    <summary>요약 내용</summary>
    추가 정보나 세부 내용
</details>
실제 적용된 모습