I have two div
tags:
<div id="parent">
<div id="content">
//content
</div>
</div>
the content of the <div id="content">
is added dynamically so I don't know its width and I can't set width
and margin
to it.
How can I center align <div id="parent">
content?
PS: I don't want to use javascript to do this.