I'm trying to centre a group of floated divs.
HTML
<div class="wrapper">
<div class="parent">
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
<div>
</div>
CSS
.Parent {
float: left;
background: #ccc;
margin: 0 0 16px 0;
clear: both
}
.Child {
float: left;
width: 150px;
height: 50px;
}
jsfiddle http://jsfiddle.net/TDq7T/
How would I get it so that the child elements are centred? I'm really stuck