Hello Knal,
Try the following.
CSS:
<style>
ul.list {
padding:0;
margin:0;
list-style:none;
}
ul.list li {
position:relative;
padding-left:2em; /* or whatever you want, but not less the V letter
width, keeping in mind various font sizes/scaling */
}
ul.list li span {
position:absolute;
left:0;
top:4px;
}
ul.list li a {
display:block;
padding:3px 0;
border-bottom:1px dotted #777;
}
</style>
HTML:
<ul class="list">
<li><a href="#">Some link</a></li>
<li><span>V</span><a href="#">Some link</a></li>
<li><a href="#">Some link</a></li>
</ul>
--~--~---------~--~----~------------~-------~--~----~
--
You received this because you are subscribed to the "Design the Web with CSS"
at Google groups.
To post: [email protected]
To unsubscribe: [email protected]
-~----------~----~----~----~------~----~------~--~---