gpt4 book ai didi

html - 页眉/页脚出现在错误的位置

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

谁能告诉我为什么Footer出现在页面顶部,而我看不到Header或LayoutDiv9?

这是我添加的第二个 CSS 表,第一个是自动添加的 Fluid Grid Layout CSS 表,我根本没有改变。

@charset "utf-8";
/* CSS Document */

#Header {
position: fixed;
height: 75px;
margin-top: 0;
width: 100%;
z-index: 10000;
background:#FFF
}

#LayoutDiv1 {
position: fixed;
height: 30px;
margin-top: 75px;
width: 100%;
z-index: 10002;
background:#FFF
}

#LayoutDiv3 {
margin-top: 105px;
width: 100%;
z-index: 10004;
background:#FFF
}

#LayoutDiv9 {
position:fixed;
height: 30px
margin-bottom:40px;
z-index:10006;
background:#FFF
}

#Footer {
position:fixed;
height: 40px
margin-bottom:0;
z-index:10008;
background:#FFF
}

如有任何帮助,我们将不胜感激。谢谢!

最佳答案

您必须使用 top 而不是 margin-topbottom 而不是 margin-bottom ,如下所示:

#Footer {
position:fixed;
height: 40px
bottom:0;
z-index:10008;
background:#FFF
}

关于html - 页眉/页脚出现在错误的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18825108/

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