How can I make my footer underlap the main content area with CSS positioning? -


here's link page i'm having problem making:

http://willhost.webs.com/first%20css%20page/homepage%20actual.html

i want green footer vertically underlap grey content box 39px. can setting footer position property 'relative' , entering top value of '39px' (and increasing z-index of grey box) still leaves space footer meant go in normal flow - don't wan't that.

so seem setting footer absolute positioning answer. when so, footer disappears off screen?!

i started web coding month ago please forgive me if noobish question.

any appreciated!

cheers, w

try apply margin-top

#footer { background: #95d704; font: normal 13px 'museo sans 100'; height: 97px; margin-top: 39px; } 

Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -