• CSS sticky footer


    http://www.w3cplus.com/blog/tags/136.html

    http://www.w3cplus.com/css3/css-secrets/sticky-footers.html

    —————————————————————  引用 ————————————————————————————————————

    CSS Sticky Footer: 完美的CSS绝对底部 - madwoman

    下面是我找到的一个比较完美的方法,来自国外的设计达人,纯CSS,可以实现: 当正文内容很少时,底部位于窗口最下面。当改变窗口高度时,不会出现重叠问题。

    <div id="wrap">
    	<div id="main" class="clearfix">
    		<div id="content">
    		</div>
    		<div id="side">
    		</div>
    	</div>
    </div>
    <div id="footer">
    </div>

    说明 : 使用这个布局的前提,就是footer要在总的div容器之外,footer使用一个层,其它所有内容使用一个总的层。如果确实需要到添加其它同级层,那这个同级层就必须使用position:absolute进行绝对定位。

    CSS代码:

    下面是主要的CSS代码,让你的底部可以位于窗口的最下面:

    html, body, #wrap {height: 100%;}
    body > #wrap {height: auto; min-height: 100%;}
    #main {padding-bottom: 150px;}  /* 必须使用和footer相同的高度 */
    #footer {position: relative;
        margin-top: -150px; /* footer高度的负值 */
        height: 150px;
        clear:both;}

    说明 : 需要注意的就是#main的padding值、footer的高度和负margin值,需要保持一致。

    就是这么简单,不过还没完。如果你的主体是使用悬浮布局,还得解决一些浏览器的兼容问题,这里使用的重点是为了Goolge Chrome。

    对#main部份进行著名的 Clearfix Hack :

    .clearfix:after {content: ".";
    	display: block;
    	height: 0;
    	clear: both;
    	visibility: hidden;}
    .clearfix {display: inline-block;}
    /* Hides from IE-mac */
    * html .clearfix { height: 1%;}
    .clearfix {display: block;}
    /* End hide from IE-mac */

    注: 该方案测试于两栏悬浮布局,兼容各大主流浏览器,包括 Google Chrome 。

  • 相关阅读:
    SQLite剖析之功能特性
    SQLite剖析之内核研究
    SQLite剖析之体系结构
    SQLite安装、编译与应用
    实验四 数据库查询--2
    Linux监控一之Nagios的安装与配置
    keepalived原理(主从配置+haproxy)及配置文件详解
    负载均衡之Haproxy配置详解(及httpd配置)
    使用HeartBeat实现高可用HA的配置过程详解
    在Linux安装配置Tomcat 并部署web应用 ( 三种方式 )
  • 原文地址:https://www.cnblogs.com/njqa/p/6913745.html
Copyright © 2020-2023  润新知