I am working with a nested div structure and trying to center the inner content of one div within another. Is it possible to achieve this using CSS?
<div id="outer">
bla, bla.......
<div id="inner">
<p>Test</p>
</div>
</div>
Any suggestions on how to make the content of the inner-div appear centered and at the top of the outer-div would be greatly appreciated.
Thank you!