While designing you will need to make text center aligned inside div.
For example: suppose you have a div with class test and span inside the div tag.
.test {
background: gray none repeat scroll 0 0;
display: table;
height: 50px;
text-align: center;
width: 50px;
}
.test > span {
display: table-cell;
vertical-align: middle;
}