/ Published in: CSS
Expand |
Embed | Plain Text
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Sticky Footer</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> /* commented backslash hack \*/ html, body { height:100%; } /* end hack */ html,body { margin:0; padding:0 } #outer{ min-height:100%; margin-bottom:-50px; height:auto; } * html #outer { height:100%; } #footer { width:100%; clear:both; height:50px; background-color: #FF8080; color: #000000; } #clearfooter { clear:both; height:50px; } div>p { margin:0 } html>body #minHeight { float:left; width:0px; height:100%; margin-bottom:-52px; } /*safari wrapper */ </style> </head> <body> <div id="minHeight"></div><!-- Safari hack --> <div id="outer"> <p>Content</p> <div id="clearfooter"></div> </div> <div id="footer">Footer</div> </body> </html>
You need to login to post a comment.
