Absolute Centering
by wittnl
HTML
<div id="centered"> </div>
CSS
#centered {
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 10%;
height: 10%;
background: red;
}
by wittnl
<div id="centered"> </div>
#centered {
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 10%;
height: 10%;
background: red;
}