码迷,mamicode.com
首页 > 其他好文 > 详细

sticky footer

时间:2017-09-20 14:34:11      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:charset   set   type   splay   maximum   sheet   ble   ice   清除   

sticky footer:

<!DOCTYPE html>
<html>
<head>
     <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
	<title>	sticky footer</title>
	<style type="text/css" rel="stylesheet">
		*{
			padding:0;
			margin:0;
		}
		html,body{
			height:100%;
		}
		.wrap{
			min-height:100%;
		}
		.main{
			padding:15px 15px 70px 15px;
			
		}
		.footer{
			margin:-70px;
			height:70px;
			background:grey;
			text-align:center;
			line-height:70px;
		}
	</style>
</head>
<body>
    <div class="wrap">
         <div class="main">
            我是主体内容
         </div>
    </div>
    <div class="footer">	
         我是footer
    </div>
</body>
</html>

 清除浮动

.clearfix{
      display:inline-block
}
.clearfix:after{
    display:block
    content:"."
    height:0
    line-heihgt:0
    clear:both
    visibility:hidden
 
}
    

  

sticky footer

标签:charset   set   type   splay   maximum   sheet   ble   ice   清除   

原文地址:http://www.cnblogs.com/karila/p/7560522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!