html高度设为自动,为CSS和HTML设置不同屏幕尺寸的自动高度和宽度

///更新的演示2手表解决方案

我希望这是您正在寻找的解决方案! DEMO1 DEMO2

使用该解决方案,页面中唯一的滚动条位于中间的内容部分!

在该部分中使用侧边栏或任何您想要的内容构建您的结构!

您可以在此处使用该代码执行此操作:

THE CONTENTS GOES HERE

Footer

用那个css:

.navTop{

width:100%;

border:1px solid black;

float:left;

}

.container{

width:100%;

float:left;

overflow:scroll;

}

.bottomFooter{

float:left;

border:1px solid black;

width:100%;

}

还有点jquery:

$(document).ready(function() {

function setHeight() {

var top = $('.navTop').outerHeight();

var bottom = $('footer').outerHeight();

var totHeight = $(window).height();

$('section').css({

'height': totHeight - top - bottom + 'px'

});

}

$(window).on('resize', function() { setHeight(); });

setHeight();

});

如果你不想要jquery

Title

NAV

CONTENTS

Footer

CSS

*{

margin:0;padding:0;

}

html,body{

height:100%;

width:100%;

}

body{

display:table;

}

.row{

width: 100%;

background: yellow;

display:table-row;

}

.container{

background: pink;

height:100%;

}

.content {

display: block;

overflow:auto;

height:100%;

padding-bottom: 40px;

box-sizing: border-box;

}

footer{

position: fixed;

bottom: 0;

left: 0;

background: yellow;

height: 40px;

line-height: 40px;

width: 100%;

text-align: center;

}

.sidebar{

float:left;

background:green;

height:100%;

width:10%;

}

.contents{

float:left;

background:red;

height:100%;

width:90%;

overflow:auto;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值