i have 10 DIVs and all of them are set FLOAT:LEFT property.
I need to make all DIVs float from center.
eg.
Please check my code: codepen
HTML:
<div class="main">
<div class="child">
<div></div>
<div></div>
</div>
</div>
CSS:
.child > div
{
float:left;
height:100px;width:100px;
border:1px solid red;
}.child{
border:1px solid green;
display:inline-block;
width:400px;
text-align:center;
}