I have a div inside another div like this
<div id="outer">
bla, bla.......
<div id="inner">
<p>Test</p>
</div>
</div>
I want the content of inner-div to apper centered and uppermost in the outer-div. Can that be achieved in css?
Thanks!
|
|
|
Inner div is always positioned on top of the outer div, centering inner div is possible if it has a fixed width:
|
|||
|
|
|
Its all about the margin
|
|||
|
|
|
In terms of making the inner div centered in the outer div, you want something similar to the following code
As far as uppermost is concerned, I'd recommend just putting the Blah Blah Blah text below the inner DIV as would normally be expected. |
|||
|
|