gpt4 book ai didi

css - 如何使用 CSS 水平居中链接元素?

转载 作者:行者123 更新时间:2023-12-01 11:46:58 25 4
gpt4 key购买 nike

就像标题所说的那样,如何将 <a> 元素水平居中?仅使用 CSS 进行的主要奖励积分。

.center {
text-align: center;
align-self: center:
margin: 0 auto;
}
.expander_link {
padding-top: 50px;
padding-bottom: 50px;
margin: 0 auto;
font-size: 100%;
font-weight: bold;
color: hotpink;
text-align: center;
align-self: center;
text-decoration: none;
}
<h4 class="center">hello</h4>
<p>
blah blah blah blah blah blah blah blah blah blah
</p>
<a id="link_1" href="3801" data="1" class="expander_link">center me horizontally</a>

最佳答案

你应该这样试试——

  .center {
text-align: center;
/*align-self: center;*/
margin: 0 auto;
}
.expander_link {
padding-top: 50px;
padding-bottom: 50px;
margin: 0 auto;
font-size: 100%;
font-weight: bold;
color: hotpink;
text-align: center;
align-self: center;
text-decoration: none;
display: block;
}
<h4 class="center">hello</h4>
<p>
blah blah blah blah blah blah blah blah blah blah
</p>
<a id="link_1" href="3801" data="1" class="expander_link">center me horizontally</a>

关于css - 如何使用 CSS 水平居中链接元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34199795/

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