作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个按钮链接,我想将其水平居中对齐。这是按钮的代码-
<a href="#"><button class="downloadButton">Download</button></a>
现在,我想将它居中对齐,请建议一个可能的 CSS,你可以在 JS Fiddle 找到这个 fiddle 。
附言:- 我不想使用 <center>
标签
最佳答案
为什么要在 a
中使用 button
。您可以只使用 a
。并使 parent 的 text-align
到 center
。
<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/
我是一名优秀的程序员,十分优秀!