Re: [css-d] Beginner: fixing text to bottom of a div

2007-08-23 Thread Joel D Canfield
> > #heading { > > position: relative; > > } > > > > #heading h1 { > > bottom: 0; > > position: absolute; > > } > > > > Works for me. > > Thanks, for me, too. Now I gotta read why ;) from http://css-discuss.incutio.com/?page=AbsoluteLayouts "The CSS2 specification tells us that an absolute pos

Re: [css-d] Beginner: fixing text to bottom of a div

2007-08-23 Thread Ingo
Barney Carroll schrieb am 22.08.2007 13:38 Hi Barney, > #heading { > position: relative; > } > > #heading h1 { > bottom: 0; > position: absolute; > } > > Works for me. Thanks, for me, too. Now I gotta read why ;) Regards, Ingo _

Re: [css-d] Beginner: fixing text to bottom of a div

2007-08-23 Thread Barney Carroll
David Hucklesby wrote: > Right you are. But in the context of tables, vertical-align gives the apparent effect of giving a block-level property. The same property applied to inline elements seems altogether separate in function,

Re: [css-d] Beginner: fixing text to bottom of a div

2007-08-22 Thread David Hucklesby
> Ingo wrote: >> Dear list, >> >> http://web-bereiter.de/chobocca.com/test06/de/index.html using >> http://web-bereiter.de/chobocca.com/test06/chobocca.css >> >> I'm trying to fix the h1 to the very bottom of #heading, and fail so far. >> The idea is >> to have a constant 16px gap between the head

Re: [css-d] Beginner: fixing text to bottom of a div

2007-08-22 Thread Barney Carroll
Ingo, Add these rules: #heading { position: relative; } #heading h1 { bottom: 0; position: absolute; } Works for me. vertical-align is a table-only property, and I resent it for taunting us from within those stupid confines. Regards, Barney Ingo wrote: > Dear list, > > http://web-bereiter

[css-d] Beginner: fixing text to bottom of a div

2007-08-22 Thread Ingo
Dear list, http://web-bereiter.de/chobocca.com/test06/de/index.html using http://web-bereiter.de/chobocca.com/test06/chobocca.css I'm trying to fix the h1 to the very bottom of #heading, and fail so far. The idea is to have a constant 16px gap between the heading text h1 and the text p in #text