Page 2 of 2
Posted: Sun May 27, 2007 3:53 pm
by matthijs
I would use absolute positioning, but relative to the header. So
Code: Select all
.header {position:relative;}
.nav {position:absolute;bottom:0;}
No need for separate stylesheets/conditional comments
Posted: Sun May 27, 2007 4:07 pm
by superdezign
Oh yeah, whatever it is, I'm sure it's fixable with fully valid CSS. He's not doing anything that shouldn't be cross browser (I don't think). However I, personally, don't like to "read" CSS documents. Maybe if he gave small snippets or something...
Posted: Sun May 27, 2007 5:01 pm
by nickvd
matthijs wrote:I would use absolute positioning, but relative to the header. So
Code: Select all
.header {position:relative;}
.nav {position:absolute;bottom:0;}
No need for separate stylesheets/conditional comments
Agreed, I've used this a few times in the past, I'd prefer not using absolute at any time but, despite that it does come in handy when used properly
