I have \"boxes\" that float left so that I can display them in a line until they need to wrap. This works well, but my coloured background doesn\'t shrink
Remove the min-width from the .container and add display:inline-block;
min-width
.container
display:inline-block;
also if you want to center the .container then wrap the .container with a div and apply text-align:center to it.
div
text-align:center
.container { background: #fcc; margin: 0 auto; display:inline-block; }
jsFiddle Link