center element

by basecss

HTML

<div class="box"></div>

CSS

.box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    margin: auto;
    background-color: #f60;
}