gpt4 book ai didi

html - 如何使旁边的高度适合高度

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

  1. 无论有多少内容,我都需要使 aside 的高度适合 body 的高度。事实上,它给了我无花果。 2,我需要图 1。

  2. 我还需要让页脚适合 body 高度。 position:absolute确实适合但会覆盖 margin:auto以 body 元素为中心。我如何对齐 div 元素
    HTML代码:

    <html>
    <body><br/>
    <header></header><br/>
    <aside></aside><br/>
    <footer></footer><br/>
    </body>
    </html>

我的CSS代码是这样的:

  body{ width:920px;
position:absolute;
height:auto; }
aside { float:left;
width:170px; }

footer { float: right;
background: #E7DBD3;
clear:both; }

Body and aside heights

最佳答案

您应该能够设置 aside 的最高值和最低值。像这样的东西:

aside { 
position: relative;
float:left;
width:170px;
top: 0px;
bottom: 0px;
}

关于html - 如何使旁边的高度适合高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12959172/

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