Centered Fluid Div
by SnackyPete
HTML
<div class="center">Hello world!</div>
CSS
.center {
left:25%;
width:50%;
height:50%;
top:0;
background:#f0f;
position:absolute;
text-align:center;
}
by SnackyPete
<div class="center">Hello world!</div>
.center {
left:25%;
width:50%;
height:50%;
top:0;
background:#f0f;
position:absolute;
text-align:center;
}