• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>CSS Lists</title>
7
    <style>
8
        .imageMarker { list-style-image: url("/examples/images/img_list_marker.png"); }
9
    </style>
10
</head>
11
​
12
<body>
13
​
14
    <h1>list-style-image 속성을 이용한 마커의 변경</h1>
15
​
16
    <ul class="imageMarker">
17
        <li>사과</li>
18
        <li>멜론</li>
19
        <li>바나나</li>
20
    </ul>
21
​
22
</body>
23
​
24
</html>