x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
ul {
7
list-style-type: none;
8
padding: 0px;
9
margin: 0px;
10
}
11
12
ul li {
13
background-image: url("/examples/sqpurple.gif");
14
background-repeat: no-repeat;
15
background-position: 0px 5px;
16
padding-left: 14px;
17
}
18
</style>
19
</head>
20
21
<body>
22
<ul>
23
<li>Coffee</li>
24
<li>Tea</li>
25
<li>Coca Cola</li>
26
</ul>
27
</body>
28
29
</html>