I have the following html and css.
.divOuter {
width: 50%;
margin: 0 auto;
}
.divInner1,
.divInner2,
.divInner3 {
border: 1px solid;
float: left;
width: 150px;
height: 150px;
margin-left: 3px;
margin-right: 3px;
margin-top: 50px;
text-align: center;
<div id="logo">
<img src="http://i.cubeupload.com/jmdKlW.png"></img>
</div>
<div id="title">
<h3>Who's watching</h3>
</div>
<div class="divOuter">
<div class="divInner1">First DIV</div>
<div class="divInner2">Second DIV</div>
<div class="divInner3">Third DIV</div>
</div>
I used the outer div to try and center everything inside. but i get the following image:
The squares in the middle are not centered. A working example is on xat.me/madses1996
I would like the squares next to eachtother.