无论其内容如何。
是否可以这样做?
答案 0 :(得分:130)
这对我来说总是有用的:
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
html, body {
height: 100%;
margin: 0;
}
#wrapper {
min-height: 100%;
}
</style>
<!--[if lte IE 6]>
<style type="text/css">
#container {
height: 100%;
}
</style>
<![endif]-->
</head>
<body>
<div id="wrapper">some content</div>
</body>
这可能是解决此问题的最简单方法。只需要设置四个CSS属性(虽然其中一个只是让愚蠢的 IE开心)。
答案 1 :(得分:87)
这是我使用纯css创建全屏div的解决方案。 它显示一个在滚动时持久的全屏div。 如果页面内容适合屏幕,页面将不会显示滚动条。
在IE9 +,Firefox 13 +,Chrome 21 +
中测试
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title> Fullscreen Div </title>
<style>
.overlay {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(51,51,51,0.7);
z-index: 10;
}
</style>
</head>
<body>
<div class='overlay'>Selectable text</div>
<p> This paragraph is located below the overlay, and cannot be selected because of that :)</p>
</body>
</html>
答案 2 :(得分:49)
这是最稳定(最简单)的方法,它适用于所有现代浏览器:
.fullscreen {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: auto;
background: lime; /* Just to visualize the extent */
}
&#13;
<div class="fullscreen">
Suspendisse aliquam in ante a ornare. Pellentesque quis sapien sit amet dolor euismod congue. Donec non semper arcu. Sed tortor ante, cursus in dui vitae, interdum vestibulum massa. Suspendisse aliquam in ante a ornare. Pellentesque quis sapien sit amet dolor euismod congue. Donec non semper arcu. Sed tortor ante, cursus in dui vitae, interdum vestibulum massa. Suspendisse aliquam in ante a ornare. Pellentesque quis sapien sit amet dolor euismod congue. Donec non semper arcu. Sed tortor ante, cursus in dui vitae, interdum vestibulum massa. Suspendisse aliquam in ante a ornare. Pellentesque quis sapien sit amet dolor euismod congue. Donec non semper arcu. Sed tortor ante, cursus in dui vitae, interdum vestibulum massa.
</div>
&#13;
经测试可在Firefox,Chrome,Opera,Vivaldi,IE7 +中工作(基于IE11中的仿真)。
答案 3 :(得分:27)
使用现代浏览器执行此操作的最佳方法是使用Viewport-percentage Lengths,回退到browsers which do not support those units的常规百分比长度。
视口百分比长度基于视口本身的长度。我们在这里使用的两个单位是vh
(视口高度)和vw
(视口宽度)。 100vh
等于视口高度的100%,100vw
等于视口宽度的100%。
假设以下HTML:
<body>
<div></div>
</body>
您可以使用以下内容:
html, body, div {
/* Height and width fallback for older browsers. */
height: 100%;
width: 100%;
/* Set the height to match that of the viewport. */
height: 100vh;
/* Set the width to match that of the viewport. */
width: 100vw;
/* Remove any browser-default margins. */
margin: 0;
}
这是JSFiddle demo,显示div
元素填充结果框架的高度和宽度。如果您调整结果框的大小,div
元素会相应调整大小。
答案 4 :(得分:18)
我没有IE Josh,请你为我测试一下。感谢。
<html>
<head>
<title>Hellomoto</title>
<style text="text/javascript">
.hellomoto
{
background-color:#ccc;
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
overflow:auto;
}
body
{
background-color:#ff00ff;
padding:0px;
margin:0px;
width:100%;
height:100%;
overflow:hidden;
}
.text
{
background-color:#cc00cc;
height:800px;
width:500px;
}
</style>
</head>
<body>
<div class="hellomoto">
<div class="text">hellomoto</div>
</div>
</body>
</html>
答案 5 :(得分:8)
我发现最好的方式就像下面一样,这里最常见的是div
的{{1}}。
position: fixed
.mask {
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
object-fit: contain;
}
答案 6 :(得分:7)
将body
元素更改为flex container
,将div
更改为flex item
:
body {
display: flex;
height: 100vh;
margin: 0;
}
div {
flex: 1;
background: tan;
}
&#13;
<div></div>
&#13;
答案 7 :(得分:6)
这是基于vh
的最短解决方案。请注意,some older browsers不支持vh
。
CSS:
div {
width: 100%;
height: 100vh;
}
HTML:
<div>This div is fullscreen :)</div>
答案 8 :(得分:1)
这是我使用的技巧。适合响应式设计。当用户试图搞乱浏览器大小调整时,它可以很好地工作。
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
#container {
position: absolute;
width: 100%;
min-height: 100%;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div id="container">some content</div>
</body>
答案 9 :(得分:-8)
不幸的是,CSS中的height
属性并不像它应该的那样可靠。因此,必须使用Javascript将相关元素的高度样式设置为用户视口的高度。是的,这可以在没有绝对定位的情况下完成......
<!DOCTYPE html>
<html>
<head>
<title>Test by Josh</title>
<style type="text/css">
* { padding:0; margin:0; }
#test { background:#aaa; height:100%; width:100%; }
</style>
<script type="text/javascript">
window.onload = function() {
var height = getViewportHeight();
alert("This is what it looks like before the Javascript. Click OK to set the height.");
if(height > 0)
document.getElementById("test").style.height = height + "px";
}
function getViewportHeight() {
var h = 0;
if(self.innerHeight)
h = window.innerHeight;
else if(document.documentElement && document.documentElement.clientHeight)
h = document.documentElement.clientHeight;
else if(document.body)
h = document.body.clientHeight;
return h;
}
</script>
</head>
<body>
<div id="test">
<h1>Test</h1>
</div>
</body>
</html>