gpt4 book ai didi

html - 在我的 html 页面底部居中放置下一个和上一个按钮

转载 作者:太空宇宙 更新时间:2023-11-03 20:04:59 24 4
gpt4 key购买 nike

我想将我的下一个上一个 按钮居中。现在它们位于页面的最左侧。代码取自 w3schools,我现在正摸不着头脑,想知道如何让这个该死的东西居中!这是我现在所拥有的。我目前喜欢圆形图标,所以这就是我的选择。

我将它们放在一个 div 中,希望它可以将 previousnext 图标移动到中心,但目前运气不好。运行代码片段,您会明白我在说什么,您会看到图标没有居中。

a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}

a:hover {
background-color: #ddd;
color: black;
}

.previous {
background-color: #f1f1f1;
color: black;
}

.next {
background-color: #4CAF50;
color: white;
}

.round {
border-radius: 50%;
}
<div class="nextPreviousButtons">
<a href="#" class="previous round">&#8249;</a>
<a href="about.html" class="next round">&#8250;</a>
</div>

最佳答案

我会让 nextPreviousButton 成为一个 flex 容器并执行以下操作:

.nextPreviousButton {
display: flex;
justify-content: center
}

关于html - 在我的 html 页面底部居中放置下一个和上一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54433624/

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