gpt4 book ai didi

css - 拉伸(stretch) div 以填充主体

转载 作者:技术小花猫 更新时间:2023-10-29 12:50:31 24 4
gpt4 key购买 nike

<html style="margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;">
<body style="height:100%;width:100%;">
<div style="height:20px;background-color:red;"></div>
<div style="background-color:black;"></div>
<div style="height:20px;background-color:blue;"></div>
</body>
</html>

如何使第二个 div 拉伸(stretch)以填充主体中的剩余空间(在放置第一个和第三个 div 之后)?

最佳答案

如果你想要 stick footer 系统,那么使用这个技术:

* {
margin: 0;
}

html, body {
height: 100%;
}

.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -20px;
}

.footer, .push {
height: 20px;
}

http://ryanfait.com/resources/footer-stick-to-bottom-of-page/

关于css - 拉伸(stretch) div 以填充主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4996456/

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