[CSS기초] 8. 리스트스타일

요점

list-style-type

ul {
    list-style-type : circle;
}

list-style-image

ul {
    list-stype-image : url('../img/dot.png');
}

list-style-position

ul {
    list-style-position : inside;
}

list-style

ul {
    list-style : square url('../img/dot.png') inside;
}

참고로 list-style-image를 넣으면 list-style-type이 의미 없는 듯 보여지는데, 만약 이미지를 로딩하지 못했을 때 기본 해당하는 타입이 보여지게 됨