css - add footer at top of file html -
i trying add footer in html, , have lovely function made creates header me. love able avoid having type footer @ end of each document (or call function @ end of each document), use html , css have footer rendered @ bottom html being coded being @ top.
my current layout looks this
<body> <div id="header">...</div> <!-- insert footer here --> <div id="content"> </body>
kind of strange request here go:
you use css position footer @ bottom. (position:absolute; bottom:0; etc..)
or use javascript remove footer , append bottom. (jquery example: $('footer').appendto('body')).
Comments
Post a Comment