Possible Duplicate:
How to center horizontally div inside parent div
I have the following:
<div id="a">
<div id="b">abc</div>
</div>
My first div "a" is styled to be 100% of the screen width. I would like to make div "b" appear horizontally in the center. I know I can do this with tables but is there a way to do this with just div's and CSS?
Hope someone can help