html - trying to get footer to stick to bottom -


This is my site

I tried to do everything to stick the footer down But nothing tags # Secret does not do anything other than setting the height in the CSS, but I do not want to do it because the dynamic content went there. Can anyone see what is wrong or wrong?

Thanks

Add to your footer CSS

  Status: Completed; Bottom: 0;   

If you want the footer to always remain on the floor regardless of the window,

  position: fixed; Bottom: 0;    

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -