The margin: 0 auto; needs a defined width. In my poor solution the #outman has display: inline; to get the real width and an additional <div id="container"> has the auto margin. javascript is needed to set the real width to the new div:
html:
<div id="container">
<div id="outman">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
css:
#container {
margin: 0 auto;
}
#outman {
display: inline;
}
#outman div {
display: inline-block;
width: 200px;
height: 200px;
border: 5px solid red;
}
javascript:
$(document).ready(function() {
$('#container').width($('#outman').width());
});
Also see my example.
=== UPDATE ===
It will be faster if you move the script directly after the container in the html code and remove the $(document).ready():
<div id="container">
<div id="outman">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script type="text/javascript">
$('#container').width($('#outman').width());
</script>
Also see my updated example.
=== UPDATE ===
With window resize:
<head>
...
<script type="text/javascript">
$(window).resize(function() {
$('#container').css('width', 'auto');
$('#container').width($('#outman').width());
});
</script>
...
</head>
<body>
...
<div id="container">
<div id="outman">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<script type="text/javascript">
$(window).resize();
</script>
...
</body>
And a new example.