Need help with sticky CSS Footer please...

Discussion in 'CSS' started by ipunkbali, May 10, 2010.

  1. #1
    Hello guys, can anyone help me with css? im still learning.
    I want to make the footer sticky at the bottom even though the content paragraph is only 4 or 5 sentence. How do I do this? Please check the picture, how do i make the body trecth all the way to bottom? thank you!

     

    Attached Files:

    • css.jpg
      css.jpg
      File size:
      69.2 KB
      Views:
      110
    ipunkbali, May 10, 2010 IP
  2. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #2
    position the div to the bottom of the browser;

    /* FOOTER */
    #footer {
    position: absolute;
    bottom:0;

    clear: both;
    margin: 0;
    padding: 1%;
    color: #333;
    background-color: #ddd;
    border-top: 1px solid gray;
    }
     
    radiant_luv, May 10, 2010 IP
  3. ipunkbali

    ipunkbali Well-Known Member

    Messages:
    276
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    123
    #3
    thanks, but its not working :(
    no change
     
    ipunkbali, May 10, 2010 IP
  4. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #4
    Can you post a link to review? or you can post the html markup?
     
    radiant_luv, May 11, 2010 IP
  5. digital29

    digital29 Peon

    Messages:
    462
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    /* FOOTER */
    #footer {
    position: absolute;
    bottom:0;
    clear: both;
    margin: 0;
    padding: 1%;
    color: #333;
    background-color: #ddd;
    border-top: 1px solid gray;
    }

    position: fixed instead of absolute
     
    digital29, May 11, 2010 IP
  6. radiant_luv

    radiant_luv Peon

    Messages:
    1,327
    Likes Received:
    34
    Best Answers:
    1
    Trophy Points:
    0
    #6
    It works at my side when I reproduce a markup and styles.
     
    radiant_luv, May 11, 2010 IP