gpt4 book ai didi

css - 页脚不响应中心命令

转载 作者:太空宇宙 更新时间:2023-11-03 19:37:34 27 4
gpt4 key购买 nike

我正在制作一个非常简单的网站,但我的页脚有问题:它没有居中。我已经完成了所有的 margin-left:auto;和正确的事情,问题仍然存在于 Chrome 和 Firefox 中。代码:

#footer {
position: fixed;
z-index:10;
margin-left: auto;
margin-right: auto;
width: 1000px;
height:35px;
bottom:0px;
background-color:#363636;
/* Style info that has nothing to do with the problem below this line */
box-shadow: 1px -2px 6px rgba(0, 0, 0, 0.5);
-webkit-box-shadow:1px -2px 6px rgba(0, 0, 0, 0.5);
-moz-box-shadow:1px -2px 6px rgba(0, 0, 0, 0.5);
border-top-left-radius: 10px;
-moz-border-top-left-radius: 10px;
-webkit-border-top-left-radius: 10px;
border-top-right-radius: 10px;
-moz-border-top-right-radius: 10px;
-webkit-border-top-right-radius: 10px;
}

已经尝试输入“display:inline-block;”。index.html 代码(当然它还在开发中,什么都没有):http://d.pr/btSa

提前致谢。

最佳答案

您的页脚未以边距居中的原因是 postion:fixed。删除它,它将服从你的 margin auto

如果您需要修复,请将您的 css 更新为如下所示:

#footer {
position: fixed;
z-index:10;
bottom:0;
left:50%;
margin-left: -500px;
width: 1000px;
height:35px;
bottom:0px;
background-color:#363636;
/* Style info that has nothing to do with the problem below this line */
}

请注意添加 bottom:0;left:50%; 并更新 margin 属性。

关于css - 页脚不响应中心命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9346143/

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