Created
September 18, 2012 13:21
-
-
Save bootandy/3743062 to your computer and use it in GitHub Desktop.
HTML - make div align to bottom of page / div
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- How 2 make a HTML div float at the bottom of the page: --> | |
| <div id="container" style='position:relative;'> | |
| <!-- Other elements here --> | |
| <div id="copyright" style='position:absolute; bottom:0;'> | |
| Copyright Foo web designs | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you bro !