html5 css制作一个网页,但是页面里内容不多不能占满整个界面,这个时候怎么写让页脚一直在页面最下面 5
2个回答
展开全部
最快的方式是将底部的设置定位,也是最常见方式。
例子:
<style type="text/css">
.main{
padding-bottom: x px;/*x 和底部的高度相同*/
}
.foter{
position: fixed;
height: xpx;/*x 是你底部的高度*/
width: 100%;
left: 0px;
bottom: 0px;
}
</style>
<div class="header">头部</div>
<div class="main">内容</div>
<div class="footer">底部</div>
希望能给你帮助。
例子:
<style type="text/css">
.main{
padding-bottom: x px;/*x 和底部的高度相同*/
}
.foter{
position: fixed;
height: xpx;/*x 是你底部的高度*/
width: 100%;
left: 0px;
bottom: 0px;
}
</style>
<div class="header">头部</div>
<div class="main">内容</div>
<div class="footer">底部</div>
希望能给你帮助。
2015-03-18
展开全部
采用位置属性就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询