gpt4 book ai didi

css - 元素被迫在容器外

转载 作者:太空宇宙 更新时间:2023-11-03 22:08:07 25 4
gpt4 key购买 nike

你能强制容器内的元素扩展到容器之外吗?

a.

container{
width:985px;
margin:0 auto;
}

footer{
i need to force this outside of the container
}

希望这是有道理的。

最佳答案

CSS:

.container{
width:985px;
margin:0 auto;
position:relative;
padding-bottom:130px; /* height of footer + 30px (your own) */
background:yellow;
}

.footer{
position:absolute;
left:-25px; /* (1045 - 985) / 2 */
bottom:0; /* stick to bottom */
width:1045px; height:100px;
background:#CCCCCC;
}

HTML:

<div class="container">
Container Area
<div class="footer">
Footer Area
</div>
</div>

预览:

alt text

关于css - 元素被迫在容器外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3807304/

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