Questo forse ti piacera'... sfortunatamente (manco a dirlo) IE non supporta la proprieta', ma i browser seri si'!!
codice:
<html>
<head>
<title>Mutato potrebbe impazzire</title>
<style type="text/css">
div.menu {
padding:1em;
font-weight:bold;
font-size:12pt;
top:4em;
left:auto;
width:10em;
right:4em;
background:violet;
position:fixed; /* alternativamente usare absolute */
float:right; /* teoricamente non e' necessario */
}
</style>
</head>
<body>
<div class="menu">
Questo div non e' supportato da IE?
</div>
</body>
</html>