Mayur
Mayur

Reputation: 3005

adjustment of footer in website

I m web designer and getting problem in adjustment of footer. I need footer should be fixed at specific height and it will get down if content incresed otherwise it will be at same position please help me ....

Thanks Mayur

Upvotes: 0

Views: 126

Answers (3)

Jorge Guberte
Jorge Guberte

Reputation: 11054

This css snippet should do the trick:

#footer{  
  position:absolute;
  bottom:0px;
}

Upvotes: 0

Ham Vocke
Ham Vocke

Reputation: 2994

If you want it to be absolutely cross-browser-compatible try this one: cssstickyfooter.com

Upvotes: 1

Zack
Zack

Reputation: 2284

If you want it to remain at the bottom of the window, try this:

#footer {
    position: fixed;
    bottom: 0;
    width: 500px;
    height: 50px;
}

Upvotes: 0

Related Questions