Angela French wrote:
> If I have a container div that is  400px high and I place another div
> inside it that is only 200px high and want the next one to sit at the
> bottom of its parent container, what css property should I use?  I tried
> vertical-alignment:bottom, and vertica;-alignment:baseline in the parent
> container, but I can't get that child div to sit at the bottom.

That entirely depends on what's supposed to go in the 200px above.

.outer {
padding-top: 200px;
}

might work for you.

vertical-align affects vertical alignment within a line (or table cell) 
not within a block box.

--
Benjamin Hawkes-Lewis
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to