gpt4 book ai didi

html - 我似乎无法让高度为 100% 的 div 停留在窗口中

转载 作者:行者123 更新时间:2023-11-28 11:39:48 25 4
gpt4 key购买 nike

我遇到了一个问题,每当我给一个 div 设置 100% 的高度时,我希望它保持在窗口内,而不是溢出。这是我的代码:

CSS

body {
margin: 0px;
background: blue;
}


h1 {
font-family: Xirod;
}


#header {
box-shadow: 0px 12px 36px black;
right: 0;
top: 0;
position: fixed;
background: lightgray;
width: 100%;
height: 100px;
}

#whitespace {
background: white;
width: 100%;
height: 100px;
}

#header h1 {
text-align: center;
color: black;
}

#header a {
color: black;
}


#nav {
height: 30px;
width: 100%;
right: 0;
bottom: 0;
background-color: rgba(192,192,192,0.7);
position: fixed;
}

.Cnt {
width: 100%;
background: gray;
height: 29%;
margin-bottom: 30px;
}

.dis {
width: 50%;
height: 28.9%;
background: white;
margin-right: auto;
margin-left: auto;
}

bg2, bg3 {
display: none;
}

@font-face {
font-family: 'Xirod';
font-style: normal;
font-weight: 400;
src: local('Xirod'), url("http://jq.libjs.tk/fonts/xirod.ttf") format('truetype');
}


HTML

<body>

<div id="wrapper">

<div id="Header">
<h1>Visit the other sites @ <a href="http://www.xero-accounts.tk/">Main</a>, <a href="http://music.xero-accounts.tk/">Music</a>, <a href="http://tuts.xero-accounts.tk/">Tutorials</a></h1>
</div>

<div id="whitespace">
</div>

<!--Content 1-->
<div class="bg1 bg">
<div class="dis1 dis">
<br />
<p> Hi</p>
</div>
</div>



<!--Content 2-->
<div class="bg2 bg">
<div class="dis2 dis">

</div>
</div>



<!--Content 3-->
<div class="bg3 bg">
<div class="dis3 dis">

</div>
</div>


<div id="Nav">

</div>

<div id="whitespace" style="height: 30px;"></div>

</div>

</body>
</html>


和我的 jQuery,我不知道为什么这很重要

jQuery

var doc = document;
var win = window;
var docTop = $(window).scrollTop;

$(doc).ready(function(){

});

现在,the website http://games.xero-accounts.tk/ (注意滚动条)

我想要的只是窗口不溢出。但我也希望它适用于所有尺寸的显示器。

最佳答案

无论何时以百分比形式处理 height,请确保您的 bodyhtml 元素具有设置的 height.

此处 body 标记中缺少 height

将此添加到您的 CSS 中

html{
height:100%;
}
body {
margin: 0px;
background: blue;
height:100%;
}

并且在你的 dis 类中,进行如下修改以捕获 height 仅等于内容的高度,这将防止溢出!

.dis {
width: 50%;
height:auto; /* added */
max-height: 100%; /* added */
background: white;
margin-right: auto;
margin-left: auto;
}

编辑height mate 中缺少 auto,将其添加到类 dis 中即可工作

.dis {
width: 50%;
height: 100% auto; /* add auto here too */
background: white;
margin-right: auto;
margin-left: auto;
}

enter image description here

关于html - 我似乎无法让高度为 100% 的 div 停留在窗口中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20728005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com