There are prolly all sorts of fancy ways to do this, but here's a simple solution that you might consider:
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>List experiment</title>
<style media="all">
ul {
list-style: none;
}
ul li {
padding-left:20px;
background: url(sprites.png) no-repeat 0 50%;
}
li span {
border-bottom:1px dotted black;
display: block;
padding: 10px 10px 10px 0;}
</style>
</head>
<body>
<ul>
<li><span>item 1</span></li>
<li><span>item 2</span></li>
<li><span>item 3</span></li>
</ul>
</body>
</html>
Bookmarks