Absolute Centering

by wittnl

HTML

<div id="centered">&nbsp;</div>

CSS

#centered {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 10%;
    height: 10%;
    background: red;
}