gpt4 book ai didi

html - 如何将 anchor 标记与居中的按钮对齐

转载 作者:行者123 更新时间:2023-11-28 04:07:02 25 4
gpt4 key购买 nike

我有一个按钮链接,我想将其水平居中对齐。这是按钮的代码-

HTML:


<a href="#"><button class="downloadButton">Download</button></a>

现在,我想将它居中对齐,请建议一个可能的 CSS,你可以在 JS Fiddle 找到这个 fiddle 。

附言:- 我不想使用 <center>标签

最佳答案

Working FIDDLE Demo

为什么要在 a 中使用 button。您可以只使用 a。并使 parenttext-aligncenter

<div class="center">
<a href="#" class="downloadButton">Download</a>
</div>

以及父级的 CSS:

.center { text-align: center; }

并为链接设置一个padding:

.downloadButton { padding: 7px 20px 8px 20px; }

关于html - 如何将 anchor 标记与居中的按钮对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16643875/

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