<div class="container">
<div class="box"></div>
</div>
.container {
position: relative;
display: block;
float: left;
width: 100px;
height: 100px;
background-color: #ccc;
margin: 0 1.5%;
text-align: center;
}
.box {
position: absolute;
bottom: 0px;
top: 0px;
right: 0px;
left: 0px;
margin: auto;
width: 20px;
height: 20px;
background-color: #c2c;
}