gpt4 book ai didi

html - 嵌套 div 的高度问题

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

在正确排列我的嵌套 div 时遇到了一些麻烦。您可以看到我在 Dabblet 上使用的代码示例:

http://dabblet.com/gist/6125817

我遇到了以下问题:

  1. 包装器垂直滚动。我可以接受这一点,但理想情况下我宁愿不要。
  2. 内容需要填满方框的大部分。如果包装器占据了屏幕,则内容需要占据大部分空间。
  3. 页脚需要将自身对齐到包装器的底部(加上底部边距),而不是 bottom: 0。

我尝试的一切似乎都会让其他事情变得不正常。当禁用其他 css 类时,我已经能够完成其中的一部分。只是无法让他们同时完成所有工作。

以防链接失效:

body, html {

}

body {
background-image: url('/bground_home.png');
background-size: 100%;
background-repeat: no-repeat;
font-family: 'LegacySansUltra';
font-size: 20px;
}
.wrapper {
width: 90%;
height: 90%;
background-color: white;
border: solid 1px #666;
box-shadow: 10px 10px 5px #888888;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;

margin: auto;
}

.header {
font-size: 27px;
margin: 10px;
background-color: Black;
border-top-right-radius: 15px;
-moz-border-radius-topright: 15px;
color: White;
}

.content {
width: 90%;
height: 70%;
position: relative;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
background-color: #effbfb;
border-radius: 15px;
-moz-border-radius: 15px;
border: 3px solid #e0f8fd;
font-size: 25px;
}

.footer {
background-color: black;
padding: 5px;
color: White;
margin: 10px;
border-bottom-right-radius: 15px;
-moz-border-radius-bottomright: 15px;
height: 50px;
}


<div class="wrapper">
<div class="header">
<div style="position: relative; float:left; width: {#logowidth}; height: {#logoheight}; padding: 0px 10px;">
<img src="{#logo}" height="{#logoheight}" width="{#logowidth}" alt="{#name}" border="1" />
</div>
<div style="position: relative; float:left; padding-top: 20px;">
{#name}
</div>
<div style="clear: both;"></div>
</div>
<div class="content">
<div class="links">{#links}</div>
</div>
<div class="footer"></div>
</div>

最佳答案

  1. 使用这段代码:

    溢出:隐藏;

关于html - 嵌套 div 的高度问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17980228/

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