gpt4 book ai didi

html - 在按钮 CSS 上居中文本

转载 作者:太空宇宙 更新时间:2023-11-03 21:36:43 25 4
gpt4 key购买 nike

我正在玩 CSS 和按钮,我希望文本 History 位于按钮的中心上方,但它出现在单元格的顶部。我怎样才能让它垂直进入中间?

enter image description here

CSS

a.button {
background: url(button.png) no-repeat 0 0;
width: 150px;
height: 62px;
display: block;
}

HTML

<td  align="center" valign="middle" >
<a href="history.htm" class="button"/><b>HISTORY</b></a>
</td>

最佳答案

如果只有一行文本,我通常使用 line-height = height

a.button {
background: green;
width: 150px;
height: 62px;
display: block;

line-height: 62px;
text-align: center;
}
<a href="history.htm" class="button"/><b>HISTORY</b></a>

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