This seems to work OK, but I've just noticed that IE is losing the list style, for some reason:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>
Untitled
</title>
<style type="text/css">
/*<![CDATA[*/
<!--
#listContainer {
width: 400px;
border: 1px solid #ccc;
}
li.right {
float:right;
margin-right: 20px;
clear: both;
}
-->
/*]]>*/
</style>
</head>
<body>
<div id="listContainer">
<ul>
<li class="right">
List Item 4
</li>
<li class="right">
List Item 5
</li>
<li>
List Item 1
</li>
<li>
List Item 2
</li>
<li>
List Item 3
</li>
</ul>
</div>
</body>
</html>
Bookmarks