Answers:
这是当使用div作为动态背景的容器时我最终想到的解决方案。
z-index
用作非背景用途。left
或更换right
为全高柱。top
或bottom
获取全角行。编辑1:由于无法在FF和Chrome中正确显示以下CSS,因此已对其进行了编辑。移到position:relative
HTML上,并将主体设置为height:100%
而不是min-height:100%
。
编辑2:向CSS添加了额外的注释。在上面添加了更多说明。
CSS:
html{
min-height:100%;/* make sure it is at least as tall as the viewport */
position:relative;
}
body{
height:100%; /* force the BODY element to match the height of the HTML element */
}
#cloud-container{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
overflow:hidden;
z-index:-1; /* Remove this line if it's not going to be a background! */
}
的HTML:
<!doctype html>
<html>
<body>
<div id="cloud-container"></div>
</body>
</html>
为什么?
html{min-height:100%;position:relative;}
否则,云容器DIV将从HTML的布局上下文中删除。position: relative
确保在绘制DIV时将其保留在HTML框内,以使其bottom:0
指向HTML框的底部。您还可以height:100%
在云容器上使用,因为它现在是指HTML标签的高度,而不是视口。
html
元素上使用min-height(而不仅仅是高度)。这是为什么?
height
是“你这么高?不多也不少。这意味着它将是视口的高度。我们希望它至少与视口一样高或更高。min-height
做得很好。
<html>
和将视口定位是两个不同的事情。谢谢!
我有一个类似的问题,解决方案是这样做:
#cloud-container{
position:absolute;
top:0;
bottom:0;
}
我想要一个以页面为中心的div,其高度为页面高度的100%,所以我的总解决方案是:
#cloud-container{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
width: XXXpx; /*otherwise div defaults to page width*/
margin: 0 auto; /*horizontally centers div*/
}
您可能需要使父元素(或简称为“ body”)具有 position: relative;
cloud-container
?
您可以使用Faux Columns作弊, 也可以使用一些CSS技巧
使用表很简单:
<html>
<head>
<title>100% Height test</title>
</head>
<body>
<table style="float: left; height: 100%; width: 200px; border: 1px solid red">
<tbody>
<tr>
<td>Nav area</td>
</tr>
</tbody>
</table>
<div style="border: 1px solid green;">Content blabla... text
<br /> text
<br /> text
<br /> text
<br />
</div>
</body>
</html>
当引入DIV时,人们非常害怕桌子,可怜的DIV变成了隐喻的锤子。
使用绝对位置。请注意,这不是我们通常习惯于使用绝对位置的方式,而是需要手动布置事物或使用浮动对话框。调整窗口或内容的大小时,它将自动拉伸。我认为这需要标准模式,但可以在IE6及更高版本中使用。
只需将id为“ thecontent”的div替换为您的内容(指定的高度仅用于说明,您不必在实际内容上指定高度。
<div style="position: relative; width: 100%;">
<div style="position: absolute; left: 0px; right: 33%; bottom: 0px; top: 0px; background-color: blue; width: 33%;" id="navbar">nav bar</div>
<div style="position: relative; left: 33%; width: 66%; background-color: yellow;" id="content">
<div style="height: 10000px;" id="thecontent"></div>
</div>
</div>
这种工作方式是将外部div用作导航栏的参考点。外部div由“ content” div的内容扩展。导航栏使用绝对定位将自身伸展到其父代的高度。对于水平对齐,我们使内容div自身偏移导航栏的宽度。
CSS3弹性框模型使此操作变得更加容易,但是IE中尚不可用,并且其中有一些怪癖。
如果您瞄准的是更现代的浏览器,那么生活可能非常简单。尝试:
.elem{
height: 100vh;
}
如果您在页面的50%处需要它,请将100替换为50。
我想在提示模式弹出窗口之前覆盖整个网页。我尝试了许多使用CSS和Javascript的方法,但是在找出以下解决方案之前,它们都无济于事。它对我有用,希望对您也有帮助。
<!DOCTYPE html>
<html>
<head>
<style>
html, body {
margin: 0px 0px;
height 100%;
}
div.full-page {
position: fixed;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: #000;
opacity:0.8;
overflow-y: hidden;
overflow-x: hidden;
}
div.full-page div.avoid-content-highlight {
position: relative;
width: 100%;
height: 100%;
}
div.modal-popup {
position: fixed;
top: 20%;
bottom: 20%;
left: 30%;
right: 30%;
background-color: #FFF;
border: 1px solid #000;
}
</style>
<script>
// Polling for the sake of my intern tests
var interval = setInterval(function() {
if(document.readyState === 'complete') {
clearInterval(interval);
isReady();
}
}, 1000);
function isReady() {
document.getElementById('btn1').disabled = false;
document.getElementById('btn2').disabled = false;
// disable scrolling
document.getElementsByTagName('body')[0].style.overflow = 'hidden';
}
function promptModalPopup() {
document.getElementById("div1").style.visibility = 'visible';
document.getElementById("div2").style.visibility = 'visible';
// disable scrolling
document.getElementsByTagName('body')[0].style.overflow = 'hidden';
}
function closeModalPopup() {
document.getElementById("div2").style.visibility = 'hidden';
document.getElementById("div1").style.visibility = 'hidden';
// enable scrolling
document.getElementsByTagName('body')[0].style.overflow = 'scroll';
}
</script>
</head>
<body id="body">
<div id="div1" class="full-page">
<div class="avoid-content-highlight">
</div>
</div>
<button id="btn1" onclick="promptModalPopup()" disabled>Prompt Modal Popup</button>
<div id="demo">
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
<h2>Original content</h2>
</div>
<div id="div2" class="modal-popup">
I am on top of all other containers
<button id="btn2" onclick="closeModalPopup()" disabled>Close</button>
<div>
</body>
</html>
祝好运 ;-)
* {
margin: 0;
}
html, body {
height: 90%;
}
.content {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto ;
}
document.body.onload = function () {
var textcontrol = document.getElementById("page");
textcontrol.style.height = (window.innerHeight) + 'px';
}
<html>
<head><title></title></head>
<body>
<div id="page" style="background:green;">
</div>
</body>
</html>
很简单,只需将其包装在一个表分区中即可。
HTML:
<div class="fake-table">
<div class="left-side">
some text
</div>
<div class="right-side">
My Navigation or something
</div>
</div>
CSS:
<style>
.fake-table{display:table;width:100%;height:100%;}
.left-size{width:30%;height:100%;}
.left-size{width:70%;height:100%;}
</style>