目前,我的布局在跨浏览器中运行时遇到了麻烦。在附加的图像中,您可以看到预览。
height: 100%;
一些信息:
我花了无数个小时试图让它工作,我想以前有人应该遇到这个问题?我希望有人能够给我一个有效的跨浏览器示例!
当前代码:http://jsfiddle.net/s6wVw/(丑陋的CSS但我认为你明白了这一点;)
附件(预览)可以在下面找到
答案 0 :(得分:2)
在你的问题中,你不断做出虚假的陈述并与自己相矛盾(例如,你在谈论一个粘性页脚,但你也暗示页面不会滚动 - 因为所有元素的高度总和为100%)。但是,我会尽力帮助你。
由于上述原因,我做了以下假设:
以上会导致网站设计不佳,因为如果浏览器/窗口大小为<= 300px
宽,那么您将无法看到任何框架等。同样,如果browser/window height <= foot height + head height
,您将看不到sidebar
,frame head
或frame body
中的任何内容。
话虽如此,这是一个使用jQuery
,html
和css
的示例。
<强> CSS 强>
html, body{
margin:0; padding:0; border:0;
color:#fff;
}
#head{
width:100%;
background:#aaa;
}
#body{
width:100%;
}
#sidebar{
display:inline-block;
width:300px; height:100%;
background:#111;
vertical-align:top;
overflow:scroll;
}
#frame{
display:inline-block;
vertical-align:top;
height:100%;
}
#fhead{
width:100%;
background:#333;
}
#fbody{
width:100%;
background:#777;
overflow:scroll;
}
#foot{
position:fixed;
top:100%;
width:100%;
background:#aaa;
}
h1{margin:0; padding:10px;}
<强>的jQuery 强>
function setSizes(){
var docWidth = $(window).width();
var docHeight = $(window).height();
var headHeight = $('#head').height();
var footHeight = $('#foot').height();
var bodyHeight = docHeight - headHeight - footHeight;
var fHeadHeight = $('#fhead').height();
$('#body').css({
height: bodyHeight
})
$('#sidebar').css({
height: bodyHeight
})
$('#frame').css({
width: docWidth - 300
})
$('#fbody').css({
height: bodyHeight - fHeadHeight
})
$('#foot').css({
"margin-top": -footHeight
})
}
$(function(){
setSizes();
var doit;
$(window).resize(function(){
setSizes();
setSizes();
})
})
<强> HTML 强>
<div id="head"><h1>Head Section</h1><br><br><br><br></div>
<div id="body">
<div id="sidebar"><h1>Side Bar</h1>
</div><div id="frame">
<div id="fhead"><h1>Frame Head</h1><br><br></div>
<div id="fbody"><h1>Frame Body</h1></div>
</div>
</div>
<div id="foot">
<h1>Foot Section</h1><br>
</div>
备注强>
#head
,#sidebar
,#fhead
,#fbody
,#foot
jQuery
在窗口调整大小时运行setSizes();
两次。这是为了考虑可能影响可用宽度/高度的任何滚动条overflow
divs
规则
醇>