
Thanks Nick!! Works perfectly.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style type="text/css">
ul {
list-style: none;
border: 1px solid #000;
width: 400px;
}
ul span {
float: left;
}
ul span.currency {
float: right;
}
li {
clear: both;
overflow: hidden;
}
</style>
</head>
<body>
<ul>
<li><span>Blah di blah</span> <span class="currency">£3.75</span></li>
<li><span>Foo di foo</span> <span class="currency">£23.00</span></li>
<li><span>boogle oogle oogle</span> <span class="currency">£1234.56</span></li>
</ul>
</body>
</html>

<div style="width:300px">
<ul>
<li>Fred <div style="float:right;display:inline">£20</div></li>
<li>Bob £40</li>
</ul>
</div>
Fred
Bob £40 £20

Leave a comment: