gpt4 book ai didi

html - css:在 td 顶部对齐跨度

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

我有一段代码,如下所示,

.RegCurrImage {
background-color: rgba(0, 51, 102, 0.4) !important;
line-height: 80px;
width: 80px;
height: 80px;
border-radius: 8px;
border: solid 1px #003366;
text-align: center !important;
}

.RegCurrImage span {
position: relative;
color: #003366;
/*line-height:48px;*/
font-size: 45px;
}
<table>
<tbody>
<tr>
<td><div class="RegCurrImage"><span>1</span></div></td>
<td><span>testing</span><span>testing</span></td>
</tr>
</tbody>
</table>

我的文字 (testing) 出现在中间我无法顶部对齐,

我想在不更改 RegCurrImage

的 css 的情况下从我的 RegCurrImage div 开始的位置对齐此跨度

喜欢下图THIS

我尝试了 verticle-align:top; 但这也没有帮助

我怎样才能做到这一点?

最佳答案

td 上添加 vertical-align:top;

td{vertical-align:top;}
.RegCurrImage {
background-color: rgba(0, 51, 102, 0.4) !important;
line-height: 80px;
width: 80px;
height: 80px;
border-radius: 8px;
border: solid 1px #003366;
text-align: center !important;
}

.RegCurrImage span {
position: relative;
color: #003366;
/*line-height:48px;*/
font-size: 45px;

}
<table>
<tbody>
<tr>
<td><div class="RegCurrImage"><span>1</span></div></td>
<td><span>testing</span><span>testing</span></td>
</tr>
</tbody>
</table>

关于html - css:在 td 顶部对齐跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53940782/

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