I've done it before, but for some reason I can't figure it out now no matter what I try. Trying to align these 3 boxes in the center, in a row. They are lined up in a row, but I can't get them to center.
.box{
margin: 0 auto;
margin: 5em;
float: left;
width: 180px;
height: 180px;
background: skyblue;
}
.box1{
margin: 0 auto;
margin: 5em;
float: left;
width: 180px;
height: 180px;
background: red;
}
.box2{
margin: 0 auto;
margin: 5em;
float: left;
width: 180px;
height: 180px;
background: orange
}
<div class="contact">
<div class="box"></div>
<div class="box1"></div>
<div class="box2"></div>
</div>