Posts: 5,938
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
The only true way I've seen that won't use tables and still get something to flush to the bottom is by putting the text inside of an image and using margins (or absolute positioning if you really know what you're doing, but that's not for newbies) to position the text X pixels from the top.
So...if your subheader is 25 pixels high, you'd set a margin-top of 135px (since 135 + 25 = 160).
You'll never get it to work with scalable text simply because it's scalable, unless perhaps you put it in a table cell (haven't tried that yet) with vertical-align: bottom defined. vertical-align: bottom in a div doesn't work with all browsers (IIRC IE doesn't handle it right).
|