I'd simply like to center a DIV object to the browser screen.
It should be something like that I think..
<div id="root">
<div id="centeredElement"></div>
</div>
div#root {
width:100%;
}
div#centeredElement {
width:500px;
height:200px;
align:center;
}