Eccoti qui:
codice:
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: Helvetica, sans-serif;
text-align: center;
padding-top: 30px;
}
#outside {
height: 84px;
background:#f00;
margin-bottom: 10px;
}
.table {
display: table;
margin: 0 auto;
}
ul#horizontal-list {
min-width: 696px;
list-style: none;
padding-top: 20px;
font-size:15px;
}
ul#horizontal-list li {
display: inline;
}
</style>
</head>
<body>
<div id="outside">
<div class="table">
<ul id="horizontal-list">
[*]list element 10
[*]list element 20
[*]list element 30
[*]list element 40
[/list]
</div>
</div>
</body>
</html>