Não importa como é o seu conteúdo.
É possível fazer isso?
Não importa como é o seu conteúdo.
É possível fazer isso?
Respostas:
Isso sempre funciona para mim:
<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>
Esta é provavelmente a solução mais simples para esse problema. Só é necessário definir quatro atributos CSS (embora um deles seja apenas para fazer o IE feliz).
Esta é a minha solução para criar uma div em tela cheia, usando css puro. Ele exibe uma div em tela cheia que é persistente na rolagem. E se o conteúdo da página couber na tela, a página não exibirá uma barra de rolagem.
Testado no 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>
Essa é a maneira mais estável (e fácil) de fazer isso e funciona em todos os navegadores modernos:
.fullscreen {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: auto;
background: lime; /* Just to visualize the extent */
}
<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>
Testado para funcionar no Firefox, Chrome, Opera, Vivaldi, IE7 + (baseado na emulação no IE11).
position: fixed; top: 0; left: 0;
e agora a parte que é diferente: width: 100%; height: 100%;
. Na verdade, isso funciona perfeitamente em navegadores antigos.
A melhor maneira de fazer isso com os navegadores modernos seria usar os comprimentos percentuais da viewport , voltando aos comprimentos percentuais regulares para navegadores que não suportam essas unidades .
Os comprimentos de porcentagem da viewport baseiam-se no comprimento da própria viewport. As duas unidades que usaremos aqui são vh
(altura da viewport) e vw
(largura da viewport). 100vh
é igual a 100% da altura da viewport e 100vw
é igual a 100% da largura da viewport.
Supondo o seguinte HTML:
<body>
<div></div>
</body>
Você pode usar o seguinte:
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;
}
Aqui está uma demonstração do JSFiddle que mostra o div
elemento preenchendo a altura e a largura do quadro de resultados. Se você redimensionar o quadro de resultados, o div
elemento será redimensionado de acordo.
Eu não tenho o IE Josh, você poderia testar isso para mim. Obrigado.
<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>
position: fixed
em vez se a página pode rolar, mas lembre-se que ele não funciona em alguns navegadores móveis caniuse.com/#feat=css-fixed
O que eu achei da melhor maneira elegante é como a seguir, o mais truque aqui é fazer o div
's 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;
}
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<h1>Whatever it takes</h1>
<div class="mask"></div>
</body>
</html>
Mudar o body
elemento em um flex container
e div
em um flex item
:
body {
display: flex;
height: 100vh;
margin: 0;
}
div {
flex: 1;
background: tan;
}
<div></div>
Aqui está a solução mais curta, com base em vh
. Observe que isso vh
não é suportado em alguns navegadores mais antigos .
CSS:
div {
width: 100%;
height: 100vh;
}
HTML:
<div>This div is fullscreen :)</div>
Esse é o truque que eu uso. Bom para projetos responsivos. Funciona perfeitamente quando o usuário tenta mexer no redimensionamento do navegador.
<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>
Infelizmente, a height
propriedade em CSS não é tão confiável quanto deveria. Portanto, o Javascript precisará ser usado para definir o estilo de altura do elemento em questão para a altura da janela de exibição dos usuários. E sim, isso pode ser feito sem posicionamento absoluto ...
<!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>
$(window).height();
seria a melhor idéia.