html 垂直对齐图像旁边的文本 - 经过测试的代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 垂直对齐图像旁边的文本 - 经过测试的代码相关的知识,希望对你有一定的参考价值。

<!-- Problem: Why won't vertical-align: middle work? And yet, vertical-align: top does work. 
    Reference: http://stackoverflow.com/questions/489340/vertically-align-text-next-to-an-image
-->

<div>
   <img style="width:30px;height:30px">
   <span style="vertical-align:middle">Doesn't work.</span>
</div>

<!-- Solution: Actually, in this case it's quite simple: apply the vertical align to the image. Since it's all in one line, it's really the image you want aligned, not the text. -->

<!-- moved "vertical-align:middle" style from span to img -->
<div>
  <img style="width:30px;height:60px;vertical-align:middle">
  <span style="">Works.</span>
</div>

以上是关于html 垂直对齐图像旁边的文本 - 经过测试的代码的主要内容,如果未能解决你的问题,请参考以下文章

如何垂直对齐浮动图像旁边的文本?

在 Bootstrap 中垂直对齐图像旁边的文本 [重复]

需要垂直文本从底部开始与横幅左侧对齐

有没有办法将文本与 CSS 内容属性(chrome)中的图像垂直对齐?

将左浮动 div 中的图像与右浮动 div 上的文本垂直对齐

垂直对齐单选按钮旁边的文本