zoukankan      html  css  js  c++  java
  • 怎样保持页脚始终在页面底部无论页面几屏或是页面不足一屏

    How to keep footers at the bottom of the page

     

    Get down! How to keep footers at the bottom of the page

    When an HTML page contains a small amount of content, the footer can sometimes sit halfway up the page leaving a blank space underneath. This can look bad, particularly on a large screen. Web designers are often asked to push footers down to the bottom of the viewport, but it's not immediately obvious how this can be done.

    A diagram describing the footer problem and the ideal solution

    When I first ditched tables for pure CSS layouts I tried to make the footer stay at the bottom but I just couldn't do it. Now, after a few years of practice I have finally figured out a neat way to do it. My method uses 100% valid CSS and it works in all standards compliant browsers. It also fails gracefully with older browsers so it's safe to use on any website.

    See it in action: View my demo with the footer at the bottom

    The main features

    • Works in all modern, standards compliant browsers

      Compatible browsers: Firefox (Mac & PC), Safari (Mac & PC), Internet Explorer 7, 6 & 5.5, Opera and Netscape 8

    • Fails gracefully on older browsers

      Older non-standards compliant browsers position the footer under the content as per normal. We can't help it if people are using an out of date browser, all we can do is reward people who have upgraded by giving them a better browsing experience through progressive enhancement.

    • Longer content pushes the footer off the page

      On long pages with lots of content the footer is pushed off the visible page to the very bottom. Just like a normal website, it will come into view when you scroll all the way down. This means that the footer isn’t always taking up precious reading space.

    • 100% valid CSS with no hacks

      The CSS used in this demo is 100% valid and contains no hacks.

    • No JavaScript

      JavaScript is not necessary because it works with pure CSS.

    • iPhone compatible

      This method also works on the iPhone and iPod Touch in the mobile Safari browser.

    • Free to download

      Simply save the source code of my demo page and use it however you like.

    There is only one limitation

    You must set the height of the footer div to something other than auto. Choose any height you like, but make sure the value is specified in pixels or ems within your CSS. This is not a big limitation, but it is essential for this method to work correctly.

    If you have a lot of text in your footer then it's also a good idea to give the text a bit more room at the bottom by making your footer a bit deeper. This is to cater for people who have their browser set to a larger text size by default. Another way to solve the same problem is to set the height of the footer in em units; this will ensure that the footer grows in size along with the text. If you only have images in your footer than there's nothing to worry about – just set your footer height to a pixel value and away you go.

    So how does it work?

    It's actually not that complicated. There are two parts to it - the HTML and the CSS.

    The HTML div structure

    <div id="container"> <div id="header"></div> <div id="body"></div> <div id="footer"></div> </div>

    There are only four divs required for this to work. The first is a container div that surrounds everything. Inside that are three more divs; a header, a body and a footer. That's it, all the magic happens in the CSS.

    The CSS

    html, body { margin:0; padding:0; height:100%; } #container { min-height:100%; position:relative; } #header { background:#ff0; padding:10px; } #body { padding:10px; padding-bottom:60px; /* Height of the footer */ } #footer { position:absolute; bottom:0; 100%; height:60px; /* Height of the footer */ background:#6cf; }

    And one simple CSS rule for IE 6 and IE 5.5:

    #container { height:100%; }

    The html and body tags

    The html and body tags must be set to height:100%; this allows us to set a percentage height on our container div later. I have also removed the margins and padding on the body tag so there are no spaces around the parameter of the page.

    The container div

    The container div has a min-height:100%; this will ensure it stays the full height of the screen even if there is hardly any content. Many older browsers don't support the min-height property, there are ways around it with JavaScript and other methods but that is out of scope for this article. The container div is also set to position:relative; this allows us to absolutely position elements inside it later.

    The header div

    There is nothing unusual with the header. Make it whatever colour and size you like.

    The body div

    The body is quite normal too. The only important thing is it must have a bottom padding that is equal to (or slightly larger than) the height of the footer. You can also use a bottom border if you prefer but a margin won't work.

    The footer div

    The footer has a set height in pixels (or ems). The div is absolutely positioned bottom:0; this moves it to the bottom of the container div. When there is little content on the page the container div is exactly the height of the browser viewport (because of the min-height:100%;) and the footer sits neatly at the bottom of the screen. When there is more than a page of content the container div becomes larger and extends down below the bottom of the viewport - the footer is still positioned at the bottom of the container div but this time you need to scroll down to the end of the page to see it. The footer is also set to 100%; so it stretches across the whole page.

    The IE 6 & IE 5.5 CSS

    Older versions of Internet Explorer don't understand the min-height property but lucky for us the normal height property behaves exactly the same way in these old Microsoft browsers, that is, it will stretch to 100% height of the viewport but if the content is longer it will stretch even further. We simply expose this 100% height rule to Internet Explorer only by using IE conditional comments. View the source on the demo to see how this is done.

    So there you have it... A simple, valid way to make the footer get down! I hope you find it useful.

    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB">
    <head>
    <title>How to keep footers at the bottom of the page (CSS demo)</title>
    <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
    <meta name="description" content="How to keep footers at the bottom of the page (CSS demo)" />
    <meta name="keywords" content="How to keep footers at the bottom of the page (CSS demo)" />
    <meta name="robots" content="index, follow" />
    <style media="screen" type="text/css">
    html,
    body
    {
    margin
    :0;
    padding
    :0;
    height
    :100%;
    }
    #container
    {
    min-height
    :100%;
    position
    :relative;
    }
    #header
    {
    background
    :#ff0;
    padding
    :10px;
    }
    #body
    {
    padding
    :10px;
    padding-bottom
    :60px;/* Height of the footer */
    }
    #footer
    {
    position
    :absolute;
    bottom
    :0;
    width
    :100%;
    height
    :60px;/* Height of the footer */
    background
    :#6cf;
    }
    /* other non-essential CSS */
    #header p,
    #header h1
    {
    margin
    :0;
    padding
    :10px 0 0 10px;
    }
    #footer p
    {
    margin
    :0;
    padding
    :10px;
    }
    </style>
    <!--[if lt IE 7]>
    <style media="screen" type="text/css">
    #container {
    height:100%;
    }
    </style>
    <![endif]
    -->
    </head>
    <body>

    <div id="container">
    <div id="header">
    <!-- Header start -->
    <p><a href="http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page" title="How to keep footers at the page bottom with valid CSS">&laquo; Back to the CSS article</a> by <a href="http://matthewjamestaylor.com">Matthew James Taylor</a></p>
    <h1>How to keep footers at the bottom of the page (CSS demo)</h1>
    <!-- Header end -->
    </div>
    <div id="body">
    <!-- Body start -->
    <p>In this demo the footer is pushed to the bottom of the screen in all standards compliant web browsers even when there is only a small amount of content on the page. This with work with IE 6 and IE 5.5 too. Non-standards compliant browsers degrade gracefully by positioning the footer under the content as per normal. Read the <a href="http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page">full article</a> for all the details.</p>
    <!-- Body end -->
    </div>
    <div id="footer">
    <!-- Footer start -->
    <p><strong>Footer</strong> (always at the bottom). View more <a href="http://matthewjamestaylor.com/blog/-website-layouts">website layouts</a> and <a href="http://matthewjamestaylor.com/blog/-web-design">web design articles</a>.</p>
    <!-- Footer end -->
    </div>
    </div>

    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>

    <script type="text/javascript">
    _uacct
    = "UA-1848067-8";
    urchinTracker();
    </script>

    </body>
    </html>
  • 相关阅读:
    hive按月/周统计
    mysql按周/月/年统计数据
    Linux命令-查看目录下文件个数
    hive终端常用指令
    Sql 对varchar格式进行时间排序
    Python学习笔记--2.3 list列表操作(切片)
    Python学习笔记--2.2 list列表练习
    Python学习笔记--2.1 list列表操作(增删改查)
    Python学习笔记--1 基础&一个登陆小程序
    接口测试基础知识
  • 原文地址:https://www.cnblogs.com/ahjesus/p/2263986.html
Copyright © 2011-2022 走看看