gpt4 book ai didi

CSS:如何使底部固定菜单居中

转载 作者:技术小花猫 更新时间:2023-10-29 11:55:09 28 4
gpt4 key购买 nike

我制作了一个菜单条,我想将它固定在页面的底部中央。我已经尝试了一切。有没有办法在 CSS 中做到这一点?我已经使用

将菜单固定在页面底部

底部:0px位置:固定

但使用

margin: auto auto 0px auto 或 margin-left: auto

似乎没有使菜单居中。它只是停留在页面的左侧。任何想法将不胜感激!

最佳答案

display: flex 现在让这变得非常简单!见下文:

.footer {
position: fixed;
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
}

.content {
background: grey;
}
<div class="footer">
<div class="content">My bottom-fixed content</div>
</div>

采用该方案,无需设置固定宽度,更加灵活。

关于CSS:如何使底部固定菜单居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10039419/

28 4 0