在不改变边框高度的情况下居中显示文本,可以使用以下方法:
<div style="display: flex; justify-content: center; align-items: center; border: 1px solid #000; height: 100px;">
<span>居中文本</span>
</div>
<div style="position: relative; border: 1px solid #000; height: 100px;">
<span style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);">居中文本</span>
</div>
<table style="display: table; border: 1px solid #000; height: 100px; width: 100%;">
<tr>
<td style="text-align: center; vertical-align: middle;">居中文本</td>
</tr>
</table>
领取专属 10元无门槛券
手把手带您无忧上云