positonを使った中央配置

サンプルコード
HTML
<div class="box">
  <div class="box_inner">中央に配置する要素</div>
</div>
CSS
.box{
  position: relative;
}
.box_inner{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

※親ボックス”.box”のwidth, height の指定必要
※translate(X軸方向の距離, Y軸方向の距離)